* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body and HTML */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
    background-color: white;
    font-family: Arial, sans-serif;
}

/* Icon Bar */
.icon-bar {
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 50px;
}

.icon-bar a {
    text-align: center;
    padding: 10px;
    transition: all 0.3s ease;
    color: white;
    font-size: 20px;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.icon-bar a:hover {
    transform: scale(1.1);
}

.icon-bar img {
    width: 40px;
    height: 40px;
}

/* Center Content */
.center-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Logo */
.logo {
    position: absolute;
    top: 20px; /* Adjust as needed */
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    height: 50px; /* Keep logo size consistent */
    margin-top: 50px;
}

/* Center Image */
.center-image {
    max-width: 90vw; /* Adjust for desired enlargement */
    max-height: 90vh; /* Adjust for desired enlargement */
    width: auto; /* Ensure width is responsive */
    height: auto; /* Ensure height maintains aspect ratio */
    transition: transform 0.3s ease; /* Smooth transition for rotation */
}

/* Rotate Image for Portrait Mode */
.portrait .center-image {
    transform: rotate(90deg);
    max-width: 90vh; /* Adjust width to fit the viewport height */
    max-height: 90vw; /* Adjust height to fit the viewport width */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(90deg); /* Center and rotate */
    margin-top: 60px;
}

/* Responsive Styles */
@media (max-width: 768px) {


    .logo {
        height: 80px; /* Adjust as needed for smaller screens */
    }
}

@media (max-width: 480px) {
    .logo {
        height: 40px; /* Adjust as needed for smaller screens */
    }
}