html,
body {
    min-height: 100vh;
    max-width: 100vw;
}

body {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    margin: 0;
    background: linear-gradient(180deg, #F4F1FA, #EAE6F5);
}


/* Conteudo do main */
.container {
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.profile {
    display: flex;
    gap: 24px;
    flex-direction: column;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    margin-bottom: 24px;
}


/* Conteudo do select .profile*/
#image-profile {
    max-width: 200px;
    width: 100%;
    height: auto;
    margin: 30px;
}

.title-profile {
    text-align: center;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
    color: #1F1F1F;
}

.desciption {
    margin: 0;
    margin-bottom: 24px;
    text-align: center;
    color: #6B6B6B;
    font-size: 15px;
    opacity: 0.7;
}


/* Conteudo dos links */
#links {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
}

a {
    margin: 12px;
    padding: 5px;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    width: 300px;
    box-shadow: 0 6px 16px rgba(109, 74, 255, 0.25);
    background-color: #6D4AFF;
    color: #ffffff;
    border: none;
    transform: translateY(-2px);

}

#links a:hover {
    background: #5B3FE6;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, .25);
}


/* Footer Rodapé */
.footer {
    text-align: center;
    margin-top: auto;
    font-size: 13px;
    opacity: 0.8;
}