*{
    padding: 0;
    margin: 0;
}
body{
    width: 100%;
    height: 100vh;
    background-color:  black;
    font-family:'Times New Roman', Times, serif;
}
#header{
    width: 100%;
    display: flex;
    justify-content: space-around;
    background-color: powderblue;
}
a{
    padding: 50px;
    color: midnightblue;
    text-decoration: none;
    
    font-weight:700;
    font-size: 25px;
}
#container{
    width: 100%;
    height: 100%;
    position: relative;
}
#inicio{
    background-color: midnightblue;
    color: powderblue;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 60%;
    height: 40%;
}
.sobre{
    margin-top: 10px;
}

