@import url('https://fonts.googleapis.com/css2?family=Borel&family=Mooli&family=Raleway:ital,wght@0,100;0,200;0,300;0,400;1,100;1,200;1,300;1,400&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow: hidden;
    font-family: 'Raleway', sans-serif;
    width: 100%;
    height: 100vh;
    background-image: url('./images/background@2x.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

header {
    margin-top: 0.5rem;
    height: 4rem;
    display: flex;
    justify-content: space-between;
    color: white;
}

.logoNome {
    height: 4rem;
    width: 20vw;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.menu {
    height: 4rem;
    width: 40vw;
    display: flex;
    justify-content: space-around;
    align-items: center;
    list-style-type: none;
}

.bold {
    font-weight: bold;
}

.icon {
    width: 2rem;
}

.gerald{
    width: 100%;
    height: 98vh;
    background-image: url(./images/actor@2x.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    font-family: 'Raleway', sans-serif;
    position: absolute;
    z-index: 2;
}

.nominho{
    width: 100%;
    height: 20vh;
    background-image: url(./images/logo@2x.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    font-family: 'Raleway', sans-serif;
    position: absolute;
    top: 55%;
    z-index: 3;
}

.botao{
    width: 15vw;
    height: 60vh;
    background-image: url(./images/botão@2x.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    font-family: 'Raleway', sans-serif;
    position: absolute;
    top: 50%;
    left: 43%;
    z-index: 4;
}

footer{
    width: 30%;
    height: 15vh;
    color: #fff;
    font-size: 0.8rem;
    position: relative;
    top: 85vh;
}

@media screen and (min-width:200px) and (max-width:319px){
    .logoNome{
        margin-left: 2rem;
    }
    .container_Menu{
        display: none;
    }
    h1{
        display: none;
    }
}

@media screen and (min-width:320px) and (max-width:768px){
    header{
        margin-top: 1rem;
    }
    .logoNome{
        width: 50vw;
    }
    .oculta{
        display: none;
    }
    .bold{
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }
}