@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300;500;700&display=swap');

*{
    margin: 0;
    padding: 0;
    font-family: 'Comfortaa', cursive;
    font-weight: 500;
}

div {
    height: 750px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.intro{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
    margin:20px;
    margin: auto;
    text-align: center;
    width: auto;
    word-wrap: break-word;
}

.intro p{
    /* margin-top: 50px; */
    font-size: 35px;
}

#intro-question{
    background-color: whitesmoke;
    color: black;
}

#intro-offering{
    background-color: black;
    color: white;
}
#intro-offering p{
    font-size: 35px;
}

.logo{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* height: 600px; */
    background-color: white;
    
}
.image-logo{
    width: 75%;
    /* height: 50%; */
    filter: brightness(0%);
    transition: 1s;
    margin-top: 50px;
}
.tagline{
    /* font-size: 18px; */
    font-size: 3.5vw;
    font-weight: 700;
    letter-spacing: 1.25px;
}

.content{
    display: flex;
    background-color: whitesmoke;
    /* height: 500px; */
    justify-content: center;
    align-items: center;
}
.content h1{
    text-transform: uppercase;
    font-weight: bolder;
    /* font-size: 5.5vw; */
    font-size: 80px;
    word-wrap: break-word;
}


footer{
    display: flex;
    height: 75px;
    text-align: center;
    justify-content: center;
    align-items: center;
    background-color: black;
    color: white;
}

#social_media_button{
    color: black;
    font-size: 50px;
    transition: 0.5s;
}

@media (hover: hover){
    .image-logo:hover{
        filter: brightness(100%);
    }
    #social_media_button:hover{
        color: rgb(45, 45, 192);
    }
}