*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 100vh;
    height: auto;
    background-image: url('../assets/img/gradienteFundo.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    letter-spacing: 1.5px;
    font-family: bebas neue;
    padding: 5rem 0;
    overflow-x: hidden;
}

#mainTitle{
    color: #D81F26;
    font-size: 5rem;    
}

#subTitle{
    color: #fff;
    font-weight: 100;
    margin-top: -0.5rem;
    margin: 0 auto;
    max-width: 80%;
}

.destaque{
    color: #D81F26;
}

.searchBox{
    display: flex;
    flex-direction: column;
    align-items: center; 
    width: 100%;
    max-width: 30rem;
    margin: 5rem auto 0 auto;
    gap: 1rem;
}

#mood{
    height: 4rem;
    border-radius: 8px;
    padding: 5px;
    background-color: #2B2C2F;
    border: none;
    box-shadow: #7a7a7a 0px 0px 5px;
    font-size: 0.9rem;
    width: 100%;
    max-width: 30rem;
    color: #fff;
    align-self: center;
}

#mood:focus{
    outline: none;
}

#procurar {
    background-image: linear-gradient(to right, #e52d27 0%, #b31217  51%, #e52d27  100%);
    margin: 10px 0;
    padding: 15px 45px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: #fff;            
    box-shadow: 0 0 5px #eee;
    border-radius: 10px;
    display: block;
    font-weight: bold;
    letter-spacing: 1px;
    width: fit-content;
    cursor: pointer;
    border: none;
    align-self: center;
}

#procurar:hover {
    background-position: right center;
    color: #fff;
    text-decoration: none;
}

#loadingGif{
    height: 1rem;
    width: 1rem;
}

#resultado{
    color: #fff;
    margin-top: 2rem;
    display: inline-grid;
    gap: 1rem;
}

#sugestaoTitle{
    max-width: 30rem;
}

#sugestaoImagem{
    height: 20rem;
    border-radius: 10px;
    justify-self: center;
}

@media (max-width: 600px) {

    .mainContainer {
        padding: 0 1rem; 
    }
    
    .searchBox{
        padding: 0 1rem; 
        width: 100%;
        max-width: 30rem;
    }

    #mood{
        width: 100%;
    }
    
}



