/* General Styles */
@font-face {
  font-family: "Berylium Bd It";
  src: url("Berylium Bd It.otf");
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: black;
    color: white;
    text-align: center;
}

/* Fixed Header */
header {

}

/* Menu Icon */
.menu-icon {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    z-index: 1000;
    font-size: 24px;
    cursor: pointer;
}

/* Logo */
.logo {
    font-family: "Berylium Bd It";
    font-size: 350%;
    font-weight: bold;
}

/* Side Navigation Menu */
.side-menu {
    height: 100%;
    width: 0;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.9);
    overflow-x: hidden;
    transition: 0.3s;
    padding-top: 60px;
    z-index: 1001;
}

/* Menu Links */
.side-menu a {
    padding: 15px;
    text-decoration: none;
    font-size: 20px;
    color: white;
    display: block;
    transition: 0.3s;
}

.side-menu a:onclick {
    background: white;
    color: black;
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 30px;
    cursor: pointer;
}

/* Sections */
.section {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* Image Styling */
img {
    max-width: 80%;
    height: auto;
    border-radius: 10px;
    opacity: 0.8;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .menu-icon {
        font-size: 28px;
    }
}
