/* estilos.css */

html {
    height: 100%;
}
body {
    font-family: Arial, sans-serif;
    background-image: url("/sources/martir_informatics.png");
    background-repeat: repeat;
    width: 100%;
    height: 100%;
}

.top {
    width: 13%;
    height: 10%;
    font-size: 180%;
    color: black;
    text-align: center;
    margin: 0 auto;
}

.content {
    width: 100%;
    height: auto;
}

.left {
    width: 15%;
    height: auto;
    font-size: 140%;
    background-color: #98def09c;
    
}
.pic {
    width: 40%;
    height: 40%;
    position: center;
}

.center {
    width: 80%;
    margin-left: 15%;
    background-color: black;

}

nav {
    /*background-color: #f2f2f2;*/
    overflow: hidden;
    margin: right;
    
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    float: right;
}

nav ul li a {
    display: block;
    color: red;
    text-align: center;
    font-size: 150%;
    padding: 10px 10px;
    text-decoration: none;
}

nav ul li a:hover {
    background-color: #ddd;
}