html, body {
    margin: 0;
   	padding: 0;
	width: 1920px;
    height: 1080px;
    font-family: Arial, Helvetica, sans-serif;
    overflow: hidden;
    cursor: none;
    background: #000;
}
    
.container {
    display: flex;
    width: 100%;
    height: 100%;
}
    
/* ===== MENY ===== */
.menu {
    width: 370px;
    background: #111;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Vertikal centrering */
    align-items: center;
}
    
/* ===== KNAPPAR ===== */
.menu-button {
    width: 90%;
    margin: 40px 0; /* Mer luft mellan knapparna */
}
    
.menu-button button {
    width: 100%;
    height: 150px;
    padding: 18px 20px;
    background: #e6e6e6;
    border: none;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    vertical-align: middle;
    font-size: 1.4em;
    color: #000;
}
    
.menu-button button:active {
    background: #d0d0d0;
}
    
.menu-button img {
    max-width: 280px;
    margin-bottom: 20px;
}
    
/* ===== INNEHÅLL ===== */
.content {
    width: 1550px;
    height: 1080px;
    color: #FFF;
}
    
.pageContent {
    background: #e6e6e6;
    width: 1536px;
    height: 1080px;
    color: #FFF;
    overflow: hidden;
}

iframe {
    width: 100%;
    height: 100%;
    border: none;
    background: #fff;
}

.scroll-arrow {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    font-size: 46px;
    color: #555;
    opacity: 0.7;
    pointer-events: none;
    z-index: 9999;
    transition: opacity 0.3s ease;
}

#scrollDown {
    bottom: 30px;
    animation: bounceDown 1.6s infinite;
}

#scrollUp {
    top: 30px;
    animation: bounceUp 1.6s infinite;
}

@keyframes bounceDown {
    0%   { transform: translate(-50%, 0); }
    50%  { transform: translate(-50%, 12px); }
    100% { transform: translate(-50%, 0); }
}

@keyframes bounceUp {
    0%   { transform: translate(-50%, 0); }
    50%  { transform: translate(-50%, -12px); }
    100% { transform: translate(-50%, 0); }
}
