* {
    padding: 0px;
    margin: 0px;
}

body, html{
    height: 100%;
    background-color: #ebebeb;
}

.header {
    background-color: black;
    color: white;
    width: 100%;
    height: 10%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    display: flex;
    justify-content: center;
    width:100%;
    height: 90%;
}

.container .image {
    width: 35%;
    height: 100%;
}

.container .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter:grayscale(100);
}

.container .sections {
    width: 65%;
    height: 100%;
}

.container .sections ul {
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    height: 100%;
}

.container .sections ul li {
    margin: 20px;
    width: 30%;
    height: 70%;
    background-color: #000000;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    cursor: pointer;
    box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.5);
}


.container .sections li img {
    width: 100%;
    height: 50%;
    object-fit: contain;
    filter: invert(1);
    padding: 5px;
}

.container .sections li h2 {
    font-size: 30px;
}

.modal-about {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    display: none;
}

.modal-about .containers {
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50%;
    height: 50%;
}

.modal-about .containers .x {
    width: 100%;
    height: 10%;
    text-align: right;
}

.modal-about .containers .x button {
    width: 20%;
    height: 100%;
    background-color: #000000;
    color: white;
    border: none;
}

.modal-about .containers .text {
    width: 80%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    text-align: justify;
}

.modal-hobbies {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    display: none;
}

.modal-hobbies .containers {
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50%;
    height: 50%;
}

.modal-hobbies .containers .x {
    width: 100%;
    height: 10%;
    text-align: right;
}

.modal-hobbies .containers .x button {
    width: 20%;
    height: 100%;
    background-color: #000000;
    color: white;
    border: none;
}

.modal-hobbies .containers .text {
    width: 80%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    text-align: justify;
}