/* Estilos gerais do corpo da página */

body {
    background-image:url(nature-8280318_1920.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover; 
    background-attachment: scroll;
    background-color: #d3d4c5; /* caso somente a imagem não funcione*/
    font-family: "Alumni Sans SC", sans-serif;
    font-size: 20px;
}
p {
    line-height: 1.6;
    color: #D1cfc9;
}

h1 span{
    font-size: 60px;
}

h1{
    text-align:center;
    margin-top: 50px;
    color: #52677d;
    text-shadow: 2px 2px 4px #1c2e4a(3, 4, 94, 0.7);
}

h2{
    color: #1c2e4a;
    text-align: center;
}

h2 span{
    font-size: 40px;
}

h3{
    color: #ffffff;
    text-align: center;
}

h3 span{
    font-size: 30px;
}
p {
    max-width: 800px;
    margin: 20px auto;
    background-color: rgba(46, 48, 71, 0.144);
    padding: 20px;
    border-radius: 8px;
    line-height: 1.6;
    text-align: center;
}

/* Menu lateral */

.sidebar{
    background-color: #000000;
    color: #D1cfc9;
    position: absolute;
    top: 0;
    left: -300px;
    height: 110vh;
    width: 350px;
    transition: left 0.5s, background-color 1s;
}


.sidebar a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 20px;
    color: #d3d4c5;
    display: block;
    transition: 0.3s;
}

.sidebar:hover {
   left: 0;
   background-color: #1c2e4a;
} 

.sidebar-container:hover .sidebar {
    width: 250px;
}

