@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&display=swap');
html {
    scroll-behavior: smooth;
}
*{
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
}
header{
    background-image:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.678), transparent),
    url('../img/backgroundDiv.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}
.nav-container {
    min-height: 15vh;
}

.index-nav{
    min-height: 13vh;

    background-color:transparent;
}
.index-nav a{
    color: white;
    text-decoration: none;
}
.index-nav .logo img{
    width: 130px;
}
.nav-list li{
    letter-spacing: 3px;

    margin-left: 16px;
    margin-right: 32px;
}

#prop{
    background-repeat: no-repeat;
    background-size: cover;

    width: 100%;
    height: 100vh;

    display: flex;
    flex-direction:column;
    justify-content: space-around;  

    background-color: linear-gradient(rgba(0, 0, 0, 0.458), rgb(255, 255, 255));

    text-align: left;
}
#title{
    color: white;

    margin: auto;

    font-size: 90px;
    text-shadow: 30px;
    text-align: left;

    margin-left: 10%;
    margin-top: 10%;
}
#prop h3{
    text-align: left;
    text-shadow: 30px;
    font-size: 40px;

    color: white;

    margin: auto;
    margin-left: 10%;
    margin-top: 0%;
}
.saibaMais{
    box-shadow: 1px 1px 5px 5px #00FF43;

    background-color: #00FF43;
    color: black;

    border: black;
    border-radius: 20px;

    width: 320px;
    height: 80px;

    font-size: 30px;

    margin-left: 10%;
    margin-bottom: 10%;
}