*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;

    font-family: "Google Sans";

    outsline: 2px solid white;
}

header{
    height: 10vh;
    display: flex;
    justify-content: center;
    align-items: center;

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 9999;

    opacity: 0;

    transform: translateY(-20px);

    transition: 0.4s;

}


header .container .logo img{
    height: 40px;
    filter: invert(1);
}

header .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    width: 90%;
}

header .options a{
    text-decoration: none;
    color: black;
    padding: 17px;
    background-color: rgb(194, 194, 194);
    border-radius: 35px;
    margin: 10px;
    font-weight: bold;
    font-size: 16px;
}


/* HERO HERO HERO HERO HERO HERO HERO */


#scroll{
    height: 150vh;
}

#hero{
    height: 100vh;

    background:
        linear-gradient(
            to bottom,
            transparent 70%,
            rgb(61, 61, 136) 99%
        ),
        url("imgs/background\ hero.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    position: sticky;
    top: 0;

}

#hero .container{
    position: relative;
    width: 500px;
}


#hero .container .color{
    width: 100%;
    display: block;
    opacity: 1;

    animation: 1s apar 1;
}

@keyframes apar{
    0%{transform: translateY(-10px); opacity: 0;}
    100%{transform: translateY(0px); opacity: 1;}
}



#hero .container .GTA{
    height: 270px;
    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-40%, -55%);

    height: 75%;

    animation: 2s apar1 1;
}

@keyframes apar1{
    0%{opacity: 0;}
    30%{opacity: 0;}
    100%{opacity: 1;}
}

#hero .container .white{
    width: 100%;
        position: absolute;
    opacity: 0;

    top: 50%;
    left: 50%;
        transform: translate(-50%, -50%);
}









#hero2{
    height: 100vh;
    background:
        linear-gradient(
            to bottom,
            rgb(61, 61, 136) 1%,
            transparent 50%,
            rgba(0,0,0,0.9)
        ),
        url("imgs/background\ hero\ 2.png");




    height: 100vh;

    background-position: center;
    background-repeat: no-repeat;
    background-size: 130%;

    transition: background-size 0.08s linear;

    display: flex;
    justify-content: right;
    align-items: center;
}

#hero2 .container{

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;

    height: auto;
    width: 40%;
    gap: 40px;
    margin-right: 40px;

    .hero-content{
    opacity: 0;

    transition: opacity 0.1s linear;
}
}

#hero2 img{
    width: 40%;
}

#hero2 .btns{
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

#hero2 .btns a{
    font-size: 17px;
    text-decoration: none;
    font-weight: bold;
    color: black;
    padding: 20px;
    border-radius: 30px;
    background-color: rgb(250, 183, 247);
}

#hero2 .btns .btn2{
    font-size: 17px;
    text-decoration: none;
    font-weight: bold;
    color: white;
    padding: 17px;
    border-radius: 30px;
    background-color: transparent;
    outline: 2px solid white;
}


#hero2 .content{
    display: flex;
    align-items: top;
    flex-direction: column;
}

#hero2 .content h2{
    color: white;
    font-size: 40px;

}

#hero2 .content h1{
    color: white;
    font-size: 15px;

}






#hero3{
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;

    background:
        linear-gradient(
            to bottom,
            transparent 0%,
            rgb(15, 15, 15) 90%
        ),
        url("imgs/motivo\ rockstar.jpg");

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

iframe{
    aspect-ratio: 16 / 9;

    border: none;
    border-radius: 20px;
}


#hero3 .trailers iframe{
    margin: 20px;
}

#hero3 .text h1{
    color: white;
    text-align: left;
    font-size: 50px;
    font-weight: bold;
}

#hero3 .text h2{
    color: white;
    text-align: left;
    font-size: 30px;
    font-weight: bold;
}

#hero3 .text{
    margin-bottom: 30px;
}


footer{
    height: 20vh;

    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(15, 15, 15);
}

footer .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    width: 90%;
}

footer .rock img{
    width: 50px;
}
.rock{
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 10px;
    width: 40%;
}


.copy p{
    color: white;
}

footer .text h1, h2{
    color: white;
}

















@media (max-width: 1200px){
    #scroll{
    height: auto;
}

#hero{
    min-height: 100svh;
}

#hero .container{
    position: relative;
    width: 200px;
}

#hero2{
    min-height: 100svh;
    background:
        linear-gradient(
            to bottom,
            rgb(61, 61, 136) 1%,
            transparent 50%,
            rgba(0,0,0,0.9)
        ),
        url("imgs/background\ hero\ 2.png");

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    display: flex;
    justify-content: center;
    align-items: end;
}

#hero2 .container{
    height: auto;
    width: 90%;
    gap: 15px;
    margin-bottom: 120px;
    margin-right: 0;
}


#hero2 img{
    width: 30%;
}

#hero2 .btns{
    margin-top: 20px;
    gap: 20px;
}

#hero2 .btns a{
    font-size: 10px;
    padding: 10px;
    white-space: nowrap;
}

#hero2 .btns .btn2{
    font-size: 10px;
    padding: 9px;
    white-space: nowrap;
}



#hero2 .content h2{
    font-size: 23px;
}

#hero2 .content h1{
    font-size: 12px;
}


#hero3 .container{
    height: 60%;
    width: 90%;
}

iframe{
    aspect-ratio: 16 / 9;
    width: 50%;
    height: 50%;
}

#hero3 .trailers{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 50px;
}

#hero3 .trailers iframe{
    margin: 0;
}

#hero3 .text h1{
    font-size: 40px;
}

#hero3 .text h2{
    font-size: 15px;
}

#hero3 .text{
    margin-bottom: 50px;
    margin-left: 20px;
}



.copy p{
    color: white;
    font-size: 10px;
}

footer .text h1, h2{
    color: white;
    font-size: 10px;
    white-space: nowrap;
}

}



@media (max-width: 500px){
    iframe{
    aspect-ratio: 16 / 9;
    width: 70%;
    height: 70%;
}
}
    