* {
    font-family: 'Open Sans', sans-serif;
    text-align: center;
}

#app {
    background-image: url('./background.jpg');
    background-size: cover;
    min-height: 100vh;
    width: 100vw;
    overflow-x: hidden;
    color: white;
}

#app .container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
}

#header {
    margin: 3rem 0;
}

#header img {
    height: 15vh;
}

#content {
    margin-bottom: 30px;
}

#content p {
    font-size: 2.5rem;
    line-height: 2.3rem;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0;
}

#content p span {
    color: #eb1f27
}

#footer{
    padding-bottom: 3rem;
}

#footer p {
    margin: 0;
}


.whatsapp-ico{
    fill: white;
    width: 50px;
    height: 50px;
    padding: 3px;
    background-color: #4dc247;
    border-radius: 50%;
    box-shadow: 2px 2px 6px rgba(0,0,0,0.4);
    /* box-shadow: 2px 2px 11px rgba(0,0,0,0.7); */
    position: fixed;
    bottom: 20px;
    right : 20px;
    z-index: 10;
    transition: .5s ease-in-out;
}

.whatsapp-ico:hover{
    box-shadow: 2px 2px 11px rgba(0,0,0,0.7);
    transform: scale(1.2);
}

@media (min-width: 1024px){
    #content p {
        font-size: 3.5rem;
        line-height: 3rem;
        font-weight: 800;
        text-transform: uppercase;
        margin: 0;
    }
}