body {
    margin: 0;
    padding: 0;
    font-family: "Times New Roman", Times, serif;
    visibility: visible;
    color: #333;
    z-index: auto;
    background-attachment: fixed;
}

@keyframes slideDown {
    0% {
       transform: translateY(-100%);
    }
    100% {
       transform: translateY(0);
    }
 }

.navigation {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 10px 0;
    z-index: 1000;
    text-align: center;
    visibility: visible;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease-in-out;
    animation: slideDown 1s ease-in-out;
}

.navigation a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    margin: 0 15px;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
    opacity: 1;
}

.navigation a:hover {
    background-color: #c7b370;
    color: white;
    cursor: pointer;
}

@keyframes fadeIn {
    0% {
       opacity: 0;
    }
    100% {
       opacity: 1;
    }
 }

.title{
    position: absolute;
    top: 30%;
    left: 10%;
    transform: translateY(-50%);
    text-align: left;
    max-width: 400px;
    color: white;
    visibility: visible;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    transition: text-shadow 0.3s ease;
    animation: fadeIn 2s ease-in;
}

h1 {
    font-size: 60px;
    font-family: "Times New Roman", Times, serif;
    font-weight: bold;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.Context {
    position: absolute;
    top: 40%;
    left: 10%;
    text-align: left;
    max-width: 500px;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 0px 20px;
    border-radius: 10px;
    outline-style: solid;
    outline-color: white;
    outline-width: thin;
    visibility: visible;
    word-wrap: break-word;
    transition: background-color 0.5s ease;
    animation: slideIn 1.5s ease-in-out;
}

h3 {
    font-weight: 100;
    font-family: "Times New Roman", Times, serif;
    font-size: 16px;
    line-height: 1.5;
    transition: font-size 0.3s ease;
    user-select: none;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
       transform: translateY(0);
    }
    40% {
       transform: translateY(-10px);
    }
    60% {
       transform: translateY(-5px);
    }
 }

img {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 5px;
    width: 120px;
    visibility: visible;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: bounce 2s infinite;
}

.frame {
    margin-left: 1050px;
    margin-top: 350px;
    display: block;
    content: '';
}

.frame1 {
    margin-left: 1050px;
    display: block;
    content: '';
}

.frame2 {
    margin-left: 1050px;
    display: block;
    content: '';
}

.frame3 {
    margin-left: 910px;
    margin-top: -150px;
    display: block;
    content: '';
}

.frame4 {
    margin-left: 910px;
    display: block;
    content: '';
}

.frame5 {
    margin-left: 1190px;
    margin-top: -400px;
    display: block;
    content: '';
}

.frame6 {
    margin-left: 1190px;
    display: block;
    content: '';
}

@keyframes zoomIn {
    0% {
       transform: scale(0.8);
       opacity: 0;
    }
    100% {
       transform: scale(1);
       opacity: 1;
    }
 }

.name {
    position: absolute;
    top: 62%;
    left: 10%;
    visibility: visible;
    white-space: nowrap;
    animation: zoomIn 1.5s ease;
}

.class {
    position: absolute;
    top: 65%;
    left: 10%;
    visibility: visible;
    overflow: hidden;
    animation: zoomIn 1.5s ease;
}

h4 {
    color: white;
    font-family: "Times New Roman", Times, serif;
    visibility: visible;
    height: auto;
    transition: opacity 0.3s ease;
}
