*{
    margin: 0px;
    padding: 0px;
}

body{
    background: lightgrey;
    font-family: Arial, Helvetica, sans-serif;
    padding-top: 10px;
}

#container{
    width: 80%;
    margin: 0px auto;
    border: 0px solid grey;
}

header {
    background: seagreen;
    color: whitesmoke;
    height: 50px;
    width: calc(100% - 20px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 8px;
}

.left-content {
    display: flex;
    flex-direction: column;
}

h2 {
    margin: 0;
    font-size: 2em; /* Ajusta el tamaño según tus necesidades */
    margin-right: 10px; /* Espacio entre el título y el texto */
}

span {
    font-size: 1em; /* Tamaño normal */
}

.login-button {
    padding-right: 10px;
    padding-left: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    cursor: pointer;
    border-radius: 5px;
    background-color: green;
    color: white;
}

.clearfix{
    clear: both;
}

#content{
    float: left;
    width: calc(70% - 35px);
    background: mediumseagreen;
    min-height: 300px;
    padding-left: 15px;
    padding-right: 10px;
    padding-top: 20px;
    margin-right: 10px;
    border-radius: 8px;
}

.description {
    color: white;
    font-size: 0.8em;
}
aside{
    float: left;
    width: calc(30% - 20px);
    background: mediumseagreen;
    height: 403px;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 20px;
    border-radius: 8px;
    color: white;
}

footer{
    background: seagreen;
    color: white;
    height: 50px;
    text-align: center;
    line-height: 50px;
    margin-top: 10px;
    border-radius: 8px;
}

.article{
    color: white;
    margin-top: 15px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.article:first-child{
    padding-top: 10px;
    border-top: 1px solid #eee;
}

.article h2{
    font-size: 25px;
}