@font-face {
    font-family: "Apple Crush";
    src: url(/Fonts/Apple_Crush.ttf);
}

@font-face {
    font-family: "Friendly Neighbor";
    src: url(/Fonts/Friendly\ Neighbour.ttf);
}

.boxes {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}

.header {
    font-family: "Apple Crush", sans-serif;
    font-size: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #333333;
    text-align: center;
    margin-top: -50px;
}

.self-portrait {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid #333333;
    display: block;
    margin-left: 9px;
}

.name {
    font-family: "Apple Crush", sans-serif;
    font-size: 25px;
    color: #333333;
    text-align: center;
    margin-top: 0px;
}

.age {
    font-family: "Apple Crush", sans-serif;
    font-size: 20px;
    color: #333333;
    text-align: center;
    margin-top: -25px;
}

.nav-header {
    font-family: "Apple Crush", sans-serif;
    font-size: 35px;
    color: #333333;
    text-align: center;
    margin-left: -25px;
    margin-top: -10px;
    text-decoration: underline;
}

.navbar {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background-color: #52a4978a;
    border: 2px solid #333333;
    padding: 10px 50px 50px 50px;
    width: 120px;
    height: 100vh;
    margin-left: 100px;
}

.nav {
    font-family: "Apple Crush", sans-serif;
    font-size: 20px;
    color: #333333;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-decoration: none;
    margin-top: -10px;
    gap: 10px;
}

.nav a {
    text-decoration: none;
    color: #333333;
}

.dropbtn {
    font-family: "Apple Crush", sans-serif;
    font-size: 20px;
    color: #333333;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-decoration: none;
    margin-top: 0px;
}

.dropdown {
    position: relative;     
    display: flex;            
    flex-direction: column;
    width: 100%;
}

.dropdown-content {
    display: none;
    position: absolute;    
    left: -15px;             
    top: 20px;
    flex-direction: column;
    background-color: #52a4978a;
    border: 2px solid #333;
    min-width: 150px;
    z-index: 10;
}

.dropdown-content a {
    display: block;
    padding: 8px 12px;
    text-decoration: none;
    color: #333333;
}

.dropdown-content a:hover {
    background-color: #89d4c78a;
}

.dropdown:hover .dropdown-content {
    display: flex;
}

.content {
border: #333333 2px solid;
background-color: #52a4978a;
margin-left: 25px;
width: 550px;
height: 100vh;
}

.content-header {
    font-family: "Apple Crush", sans-serif;
    font-size: 30px;
    color: #333333;
    text-align: center;
    margin-top: 10px;
    text-decoration: underline;
}

.animation-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    min-height: 200px;
}

.animation-container video {
  width: 500px; 
  height: auto;
  user-select: none;
}

.video-text {
    font-family: "Apple Crush", sans-serif;
    font-size: 18px;
    color: #333333;
    text-align: center;
    margin: 20px;
}
.sidebar-right {
    border: #333333 2px solid;
    background-color: #52a4978a;
    margin-left: 25px;
    width: 200px;
    height: 100vh;
}

.sidebar-header {
    font-family: "Apple Crush", sans-serif;
    font-size: 30px;
    color: #333333;
    text-align: center;
    margin-top: 10px;
    text-decoration: underline;
}

.sidebar-links {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-top: 20px;
    gap: 10px;
}

.sidebar-links a {
    font-family: "Apple Crush", sans-serif;
    font-size: 20px;
    color: #333333;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-decoration: none;
}