* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #303E8C;
    color: white;
}

a {
    text-decoration: none;
    color: white;
}

#principal {
    display: flex;
}

#menu {
    width: 40%;
    margin-top: 15px;
}

.options {
    display: flex;
    flex-direction: column;
}

#main-title {
    font-size: x-large;
    margin-left: 15px;
}

.options .anchors {
    background-color: #3F61A6;
    margin: 10px 0;
    padding: 10px;
    text-align: right;
    box-shadow: 2px 2px rgba(0, 0, 0, 0.2);
}

.response {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 60%;
    margin-top: 15px;
}

.aboutMe {
    width: 100%;
    transition: 2s;
}

#name {
    font-size: x-large;
    margin-bottom: 15px;
}

#image-description {
    display: flex;
    align-items: center;
    width: 100%;
}

#image {
    display: flex;
    justify-content: center;
}

img {
    border-radius: 50%;
    padding: 3px;
    background-color: #3F61A6;
    width: 35%;
}

#description {
    display: flex;
    justify-content: flex-start;
    line-height: 25px;
    margin-right: 60px;
}

#abilities {
    margin: 15px;
    font-size: x-large;
}

.abilities ul {
    list-style: none;
}

.abilities li {
    padding: 7px;
    font-style: italic;
}

#projects {
    margin: 15px;
    font-size: x-large;
}

.projects ul {
    list-style: none;
}

.projects li {
    padding: 7px;
    font-style: italic;
}
