html, body {
    margin: 20;
   	padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    overflow: hidden;
    cursor: none;
    background: #fff;
}
   
A:link {
    color: #000;
	text-decoration: none;
}
A:hover {
    color: #000;
	text-decoration: underline;
}
A:visited {
    color: #000;
	text-decoration: none;
}
A:visited:hover {
    color: #000;
	text-decoration: underline;
}

.container {
    display: flex;
    width: 100%;
    height: 100%;
}
    
/* ===== MENY ===== */
.menu {
    width: 384px;
    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: #fff;
    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: 1536px;
    height: 1080px;
    color: #FFF;
}
   
.h4 {
    color: #666666;
}

.pageContent {
    background: #fff;
    width: 1536px;
    height: 1080px;
    color: #000;
    overflow: auto;
}

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

.scroll-arrow {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    z-index: 9999;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.scroll-arrow svg {
    width: 50px;     /* STOR pil */
    height: 50px;
    fill: #ffffff;   /* KRITVIT */
}

.scroll-arrow svg path {
    transform: scale(1.15);
    transform-origin: center;
}

.scroll-arrow.down {
    bottom: 28px;
    animation: bounceDown 1.6s infinite;
}

.scroll-arrow.up {
    top: 28px;
    animation: bounceUp 1.6s infinite;
}

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

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