*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Quintessential', serif;
    list-style: none;
    text-decoration: none;
}

header{
    position: fixed;
    right: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

body{
    background:gray;
}

.logo{
    font-size: 30px;
    font-weight: 400;
    font-family: 'Eater';
    color: white;
    position: relative;
    bottom: 25px;

}

.navbar>ul{
    padding: 30px;
    display: flex;
}

.navbar a{
    color: white;
    margin-left: 60px;
    font-size: 20px;
    font-weight: 600;
    transition: all 0.55s ease;
    border-bottom: 2px solid transparent;
}

.navbar a:hover{
    border-bottom: 2px solid ;
}

#menu-icon{
    color: white;
    font-size: 40px;
    z-index: 1001;
    cursor: pointer;
    display: none;
}
.hero{
    height: 100%;
    width: 100%;
    min-height: 100vh;
    color: white;
    background-image: url("https://fiverr-res.cloudinary.com/images/q_auto,f_auto/gigs/291722792/original/b12a5280e92972ddb2b4e34659ad8296ed344257/do-fantasy-dnd-background-landscape-and-environment-art.jpg");
    background-size:cover;
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 2rem;
}

section{
    padding: 0 19%;
}

.hero-img{
    width: 400px;
    height: auto;
}

.hero-text h5{
    font-size: 20px;
    font-weight: 400;
    color: white;
    margin-bottom: 40px;
}

.hero-text h1{
    font-size: 90px;
    font-weight: 400;
    color: white;
    line-height: 1;
    margin: 0 0 45px;
}

.hero-text h4{
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
}

.hero-text p{
    font-size: 15px;
    color: white;
    line-height: 1.9;
    margin-bottom: 40px;
}

.hero-text a{
    display: inline-block;
    color: white;
    background:#1a4298;
    border:1px solid transparent;
    padding: 12px 30px;
    line-height: 1.4;
    font-weight: 500;
    border-radius: 30px;
    font-family: 'Roboto';
    transition: all 0.55s ease;
    font-size: 20px;
}

.hero-text a:hover{
    background: transparent;
    border: 1px solid;
    transform: translateX(8px);
}

.hero-text a.ctaa{
    background: transparent;
    border: 1px solid white;
    margin-left: 20px;
}

.hero-text a  svg{
    vertical-align: middle;
    display: inline-flex;
    align-items: center;
    position: relative;
    height: 1em;
    width: 1em;
    bottom: 3px;
    margin-right: 5px;
}

.icons{
    position: absolute;
    top: 50%;
    padding: 0 9%;
    transform: translateY(-50%);
}

.icons a svg {
    display: block;
    margin: 26px 0;
    font-size: 24px;
    color: white;
    transition: all .50s ease;
}

.icons a svg:hover{
    color: #1a4298;
    transform: translateY(-5%);
}

.scroll-down{
    position: absolute;
    bottom: 6%;
    right: 9%
}

.scroll-down a svg {
    display: block;
    font-size: 25px;
    color: white;
    border-radius: 30px;
    transition: all .50s ease;
}

.scroll-down a svg:hover{
    transform: translateY(-5px);
}

@media (max-width: 1535px){
    header{
        padding: 15px 3%;
        transition: .2s;

    }
    .icons{
        padding: 0 3%;
        transition: .2s;
    }
    .scroll-down{
         right: 3%;
         transition: .2s;
    }
}

@media (max-width: 1460){
    section{
        padding: 0 12%;
        transition: .2s;
    }
}

@media (mas-width: 1340px){
    .hero-img img{
        width: 100%;
        height: auto;
    }

    .hero-text h1{
        font-size: 75px;
        margin: 0 0 30px;

    }
    .hero-text h5{
        margin-bottom: 25px;
    }
    
}

@media (mas-width: 1195px){
    section{
        padding: 0 3%;
        transition: .2s;
    }
    .hero-text{
        padding-top: 115px;
    }
    .hero-img{
        text-align: center;
    }

    .hero-img img{
        width: 560px;
        height: auto;
    }
    .hero{
        gap: 1rem;
        height: 100%;
        grid-template-columns: 1fr;
    }  
}

@media (mas-width: 990px){
    #menu-icon{
        display: block;

    }
    .navbar{
        position: absolute;
        top: 100%;
        right: 0;
        width: 300px;
        height: 40vh;
        background: #1a4298;
        display: flex;
        align-items: center;
        flex-direction: column;
        padding: 50px 20px;
    }

}