body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: rgb(245, 220, 188);
    overflow-x: hidden;
}

.logo {
    width: 30%;
    margin-bottom: 15px;
}

.title {
    width: 40%;
    justify-content: center;
    background-color: rgb(200, 200, 238);
    color: rgb(0, 0, 0);
    font-size: 15px;
    text-align: center;
    height: 135.5px;
}

.prisoner_image {
    width: 30%;
    height: 135.5px;
}

.title h1 {
    margin-top: 5px;
    color: black;
}

.header {
    display: flex;
    margin-bottom: -20px;
}

.linknav {
    margin-top: -15px;
    margin-left: 140px;
}

.linknav ul {
    list-style: none;
    width: 100%;
}

.linknav li {
    float: left;
    position: relative;
    width: auto;
    list-style: none;
}

.linknav a {
    background-color: rgb(251, 255, 0);
    display: block;
    padding: 15px 60px;
    text-align: center;
    text-decoration: none;
    font-size: 30px;
    color: blue;
    transition: all 0.2s ease;
    font-weight: 540;
}


.linknav li a:hover {
    background-color: rgb(0, 255, 234);
}

#languages {
    opacity: 0;
    position: absolute;
    visibility: hidden;
    z-index: 1;
}

li:hover #languages {
    opacity: 1;
    top: 60px;
    left: -40px;
    visibility: visible;
}

#languages li a:hover {
    background-color: rgb(253, 143, 0);
}

#languages li {
    width: 100%;
}

h1 {
    text-align: center;
    margin-bottom: -10px;
    color: rgb(4, 4, 95);
}

.first {
    margin-top: 15px;
}

.tapela img,
.gate img {
    border-radius: 100%;
}

.tapela,
.gate {
    width: 40%;
}

.embed {
    display: flex;
    background-color: rgb(245, 220, 188);
    justify-content: center;
    margin-top: 20px;
}

.detail {
    font-size: 25px;
    text-align: justify;
    padding: 50px;
    line-height: 1.5;
}

.detail_div {
    width: 65%;
    border: 5px double rgb(4, 4, 95);
    margin: 50px auto 20px auto;
    background-color: burlywood;
}

.further {
    font-size: 30px;
    text-align: center;
    margin-top: 0;

}

.further a {
    text-decoration: none;
    color: rgb(0, 154, 68);
}

.further a:hover {
    color: rgb(254, 221, 0);
}

.further a:active {
    color: rgb(239 51 64);
}

footer {
    margin-top: auto;
    text-align: center;
    background-color: rgb(41, 41, 41);
    color: white;
    font-family: 'Times New Roman', Times, serif;
    font-size: 17px;
}

@media(max-width: 538px) {
    .embed {
        flex-direction: column;
        align-items: center;
    }

    .gate,
    .tapela {
        width: 60%;
    }

    .detail_div {
        width: 80%;
    }
}