* {
    box-sizing: border-box;
}

body {

    font-family: 'Times New Roman', Times, serif;
    background-color: #6b7655;

}


.container {
    width: 90%;
    max-width: 900px;
    min-height: 80vh;
    margin: auto;
    background-color: #ffffff;
    padding: 20px;
    border: 5px solid black;
    position: relative;
    top: 50%;
    line-height: 1.8em;

}

.home-button {
    background-color: black;
    color: limegreen;
    padding: 10px 15px;
    border: 2px solid limegreen;
    cursor: pointer;
    margin-bottom: 10px;
    align-self: flex-end;
    transform: translate(-50%, 0%);

}

.home-button:hover {
    background-color: gray;
}

.content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.cv-photo {
    flex: 0;
    min-width: 100px;
    align-self: center;

}

.photo-box {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    background-color: white;

}

.photo-box img {
    width: 20%;
    height: auto;
    object-fit: cover;
    display: block;
    border: 3px solid black;
}

.cv-main {
    flex: 3;
    min-width: 250px;
}

.link-button {
    display: block;
    margin: 10px 0;
    padding: 8px;
    border: 2px solid black;
    text-decoration: none;
    color: black;
    width: fit-content;
}

.link-button:hover {
    background-color: lightgray;
}

.video-box {
    width: 100%;
    max-width: 900px;
    margin: 20px auto;
    /* border: 3px solid black;*/
}

.video-box video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.contact a {
    color: blue;
    text-decoration: none;
}

footer {
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
    font-size: 0.9em;
    color: #333;
}