@import url('https://fonts.googleapis.com/css2?family=Comic+Neue:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');

body {
    /*Fontes*/
    font-family: "Comic Neue", serif;
    font-size: 2vh;
    color: #3b3f49;

    /*Background*/
    background-color: #fdfaeb;
    background-image: 
    linear-gradient(to left, rgba(253, 250, 235, 0.1) 0%, rgba(253, 250, 235, 1) 50%),
    url('../images/background.jpg');
    background-position: right; 
    background-repeat: no-repeat;
    background-size: cover;

    /*Flex-Box*/
}

.main-div{
    height: 100vh;
    display: flex;
    flex-direction: row;
}

header {
    background-color: #3b3f49;
}

.main-nav{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    margin-top: 5vh;
}

.nav-box {
    display: flex;
    flex-wrap: wrap;
    padding: 1vw 1vh 1vw 1vh;
    margin: 1vw 1vh 1vw 1vh;
    transition: all 1s;
}

.nav-box:hover {
    background-color: #635063;
    border-radius: 10px;
}

.nav-box a {
    text-decoration:none;
    color: #f3c6b9;
    font-size: 2.4vh;
}

.nav-box:hover a {
    color: #e88087;
}

.sec-div {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    box-sizing: content-box;
    align-items: center;
}

main{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    box-sizing: border-box;
}

.main-section{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    margin-top: 10vh;
    margin-left: 2vw;
    margin-right: 2vw;
    gap: 5vh;
}

h1 {
    font-size: 3vh;
    font-weight: 700;
    color: #f7a29e;
    text-align: center;
    letter-spacing: 2px;
    -webkit-text-stroke-width: 0.8px;
    -webkit-text-stroke-color: #a82743;
}

.main-text {
    display: flex;
    flex-direction: column;
    justify-content: left;
    gap: 2vh;
    padding: 2vh 2vw 2vh 2vw;
    margin: 1vw 1vh 1vw 1vh;
}

p {
    justify-content: center;
    font-weight: 500;
}

footer{
    display: flex;
    flex-direction: column;
    position: absolute;
    bottom: 0;
    text-align: center;
    justify-content: center;
}

.foot-social {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1vh;
    text-align: center;
    justify-content: center;
}

.foot-social img {
    height: 4vh;
    text-align: center;
    justify-content: center;
    transition: all 1s;
}

.foot-social img:hover {
    height: 4.5vh;
}

small {
    font-size: 1.5vh;
}

.data {
    font-size: 1.5vh;
}