@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Carme&family=Dancing+Script:wght@400..700&family=Outfit:wght@100..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Quicksand:wght@300..700&display=swap');

:root {
    --cor-fundo: #1e1e1e;
    --cor-primaria: #F3F2EE;
    --cor-secundaria: #D7C6B3;
    --cor-texto: #F3F2EE;
}

html{
    scroll-behavior: smooth;
}

body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Quicksand", sans-serif;
    background-color: var(--cor-fundo);
    overflow-X: hidden;
    overflow-y: hidden;
}

@keyframes pulse {
  0% {
    transform: translateY(0px);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-5px);
    opacity: 1;
  }
  100% {
    transform: translateY(0px);
    opacity: 0.6;
  }
}

.logo{
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin: 10px 10px 50px 10px;
}

.logo img{
    width: 200px;
}

#simmons_logo{
    margin-top: 25px;
}

main{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.area-text{
    color: var(--cor-secundaria);
    text-align: center;
    z-index: 100;
    text-shadow: 20px 20px 40px rgba(4,4,4,4);
}

.area-text h2{
    font-size: 40px;
    background-color: var(--cor-fundo);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 1);
    padding: 15px;
}

.area-text h3{
    font-size: 30px;
    background-color: var(--cor-fundo);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 1);
    padding: 15px;
}

.area{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: -50px;
    animation: pulse 2s infinite ease-in-out;
}

.area-img img{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 800px;
    margin-top: -140px;
}

/*Header celulares padrões*/
@media (min-width: 300px) and (max-width: 1024px){
    body{
        overflow-y:auto;
    };

    .logo{
        align-items: center;
    }

    .logo img{
        width: 150px
    }

    .area{
        margin-top: -15px;
    }

    .area-text{
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .area-text h2{
        font-size: 1.3em;
    }

    .area-text h3{
        font-size: 20px;
        font-size: 1.1em;
        margin: -5px 10px 0px 10px;
    }

    .area-img img{
        width: 100%;
        margin-top: 0px;
    }

    #simmons_logo{
        margin-top: 25px;
    }
}

@media (min-width: 1025px) and (max-width: 1440px) {
    body{
        overflow-y:auto;
    };

    .logo{
        align-items: center;
    }

    .area{
        margin-top: -15px;
    }

    .area-text h3{
        margin: -5px 10px 0px 10px;
    }

}