*{
    padding: 0;
    margin: 0;
    font-family: 'Bebas Neue', cursive;
    box-sizing: border-box;
}

.hero{
    height: 100vh;
    width: 100%;
}

nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 45px;
    padding-left: 8%;
    padding-right: 8%;
    flex-wrap: wrap;
}

.logo{
    letter-spacing: 2px;
    cursor: pointer;
    z-index: 1;
    flex-wrap: wrap;
}

span{
    color: deepskyblue;
}

nav ul li{
    list-style-type: none;
    display: inline-block;
    justify-content: center;
}

nav ul li a{
    color: black;
    text-decoration: none;
    font-weight: bold;
    text-transform: capitalize;
}

nav ul li a:hover{
    color: deepskyblue;
    transition: .8s;
}

@media only screen and (min-width: 1050px) {
    .logo {
        font-size: 90px;
    }
    nav ul li{
        padding: 10px 25px;
    }
    nav ul li a{
        font-size: 25px;
    }
}

@media only screen and (max-width: 1050px) {
    .logo {
        font-size: 72px;
    }
    nav ul li{
        padding: 10px 18px;
    }
    nav ul li a{
        font-size: 20px;
    }
}

@media only screen and (max-width: 850px) {
    .logo {
        font-size: 54px;
    }
    nav ul li{
        padding: 10px 12px;
    }
    nav ul li a{
        font-size: 15px;
    }
}

@media only screen and (max-width: 650px) {
    .logo {
        font-size: 36px;
    }
    nav ul li{
        padding: 10px 8px;
    }
    nav ul li a{
        font-size: 13px;
    }
}

.hero video{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.91;
    z-index: -1;
}

.btn{
    background-color: deepskyblue;
    color: black;
    text-decoration: none;
    border: 3px solid transparent;
    font-weight: bold;
    padding: 10px 25px;
    border-radius: 30px;
    transition: transform .4s;
    z-index: 1;
}
.btn:hover{
    transform: scale(1.2);
}

/* added a right: 18% otherwise width: 100% goes of the screen due to left shift */
.content{
    position: absolute;
    top: 50%;
    left: 18%;
    right: 18%;
    transform: translateY(-50%);
    flex-wrap: wrap;
}

h1 {
    color: black;
}

h3{
    color: black;
    margin-bottom: 50px;
}

h4{
    color:deepskyblue;
    letter-spacing: 2px;
}

@media only screen and (min-width: 1050px) {
    .content h1 {
        font-size: 105px;
        margin: 20px 0px 20px;
    }
    .content h3 {
        font-size: 40px;
    }
    .content h4 {
        font-size: 25px;
    }
}

@media only screen and (max-width: 1050px) {
    .content h1 {
        font-size: 84px;
        margin: 20px 0px 20px;
    }
    .content h3 {
        font-size: 32px;
    }
    .content h4 {
        font-size: 20px;
    }
}

@media only screen and (max-width: 850px) {
    .content h1 {
        font-size: 63px;
        margin: 20px 0px 20px;
    }
    .content h3 {
        font-size: 24px;
    }
    .content h4 {
        font-size: 15px;
    }
}

@media only screen and (max-width: 650px) {
    .content h1 {
        font-size: 38px;
        margin: 20px 0px 20px;
    }
    .content h3 {
        font-size: 16px;
    }
    .content h4 {
        font-size: 13px;
    }
}

.newsletter form{
    width: 380px;
    max-width: 100%;
    position: relative;
}

.newsletter form input:first-child{
    display: inline-block;
    width: 100%;
    padding: 14px 130px 14px 15px;
    border: 2px solid deepskyblue;
    outline: none;
    border-radius: 30px;
}
.newsletter form input:last-child{
    position: absolute;
    display: inline-block;
    outline: none;
    border: none;
    padding: 10px 30px;
    border-radius: 30px;
    background-color: deepskyblue;
    color: black;
    box-shadow: 0px 0px 5px #000, 0px 0xpx 15px #858585;
    top: 6px;
    right: 6px;
}

.about{
    width: 100%;
    padding: 100px 0px;
    background-color: #191919;
}

.about img{
    height: auto;
    width: 40%;
}

.about-text{
    width: 550px;
}

.main{
    width: 1130px;
    max-width: 95%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
}

.about-text h2{
    color: aliceblue;
    font-size: 75px;
    text-transform: capitalize;
    margin-bottom: 20px;
}

@media only screen and (max-width: 650px) {
    .about-text h2{
        font-size: 60px;
    }
}

.about-text h5{
    color: aliceblue;
    letter-spacing: 2px;
    font-size: 22px;
    margin-bottom: 25px;
    text-transform: capitalize;
}

.about-text p{
    color: lightskyblue;
    letter-spacing: 1px;
    line-height: 28px;
    font-size: 18px;
    margin-bottom: 45px;
    font-family: 'Barlow Condensed', sans-serif;
}

button{
    background-color: deepskyblue;
    color: black;
    text-decoration: none;
    border: 2px solid transparent;
    font-weight: bold;
    padding: 13px 30px;
    border-radius: 30px;
    transition: 0.4s;
}

button:hover{
    background-color: transparent;
    border: 2px solid #191919;
    cursor: pointer;
}

.services{
    background-color: #101010;
    width: 100%;
    padding: 100px 0px;
}

.title h2{
    color: aliceblue;
    font-size: 75px;
    width: auto;
    margin: 30px auto;
    text-align: center;
}

@media only screen and (max-width: 650px) {
    .title h2 {
        font-size: 60px;
    }
}

.box{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    flex-wrap: wrap;
}

.card{
    height: 365px;
    width: 335px;
    padding: 20px 35px;
    background: #191919;
    border-radius: 20px;
    margin: 15px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

h5{
    color: deepskyblue;
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 25px;
    word-spacing: 2px;
}

.info p{
    color: aliceblue;
    font-size: 16px;
    line-height: 27px;
    margin-bottom: 25px;
    font-family: 'Barlow Condensed', sans-serif;
}

.info a{
    color: cadetblue;
    font-size: 25px;
    font-family: 'Passion One', cursive;
}

.Skills{
    background-color: #191919;
    width: 100%;
    padding: 100px 0px;
}

.container{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    text-align: center;
}
.card2{
    background-color: #101010;
    width: 270px;
    height: 400px;
    margin: 25px;
    border-radius: 20px;
}

.card2-img{
    background-color: aqua;
    height: 170px;
    margin-bottom: 20px;
    background-size: cover;
}

.car-1{
    background-image: url(IMG&VID/Jaccuzi%20IG.jpg);
     border-radius: 20px;
}

.car-2{
    background-image: url(IMG&VID/Running.jpg);
     border-radius: 20px;
}

.car-3{
    background-image: url(IMG&VID/Recent.jpg);
     border-radius: 20px;
}

.card2 h5{
    color: deepskyblue;
    font-size: 25px;
    word-spacing: 2px;
}

.card2 p{
    color: aliceblue;
    font-size: 16px;
    font-family: 'Barlow Condensed', sans-serif;
    padding: 5px;
    line-height: 27px;
}

.contact-me video{
    position: absolute;
    width: 100%;
    height: 55%;
    object-fit: cover;
    z-index: -1;
}

.contact-me h2{
    text-align: center;
    color: #191919;
    font-size: 75px;
    padding: 40px 0;
}

.border{
    width: 100px;
    height: 10px;
    margin: 10px auto;
    background-color: deepskyblue;
}

.contact-form{
    max-width: 600px;
    margin: auto;
    padding: 0 10px;
    overflow: hidden;
}

.contact-form-text{
    display: block;
    width: 100%;
    box-sizing: border-box;
    margin: 16px 0;
    border: 0;
    background: #191919;
    padding: 20px 40px;
    outline: none;
    color: white;
}

.contact-form-btn{
    float: right;
    border: 0;
    background-color: deepskyblue;
    color: #101010;
    padding: 12px 40px;
    border-radius: 20px;
}

footer{
    justify-content: center;
    text-align: center;
    padding: 50px;
    line-height: 50px;
}