body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #000000;
    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    color: #fff;
	text-align: left;
}

/* Bilder - Anpassa storlek bättre */
.imgLogoTxt {
    max-width: 50%;
}

.imgLogo {
    animation: pulse-beat 4s infinite;
    max-width: 40%; /* Större på mindre skärmar */
}

@keyframes pulse-beat {
    0% { transform: scale(1); }
    5% { transform: scale(1.1); }
    10% { transform: scale(1); }
    15% { transform: scale(1.1); }
    20% { transform: scale(1); }
    100% { transform: scale(1); }
}

/* Länkar */
a {
    color: #00C3FF;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:visited {
    color: #00C3FF;
}

a:hover {
    color: #FFD700;
}

a:active {
    color: #FF4500;
}

/* Responsiv layout */
#main {
    margin: 10%;
    padding: 10px;
    max-width: 800px; /* Begränsar bredden på stora skärmar */
}

/* Anpassning för mindre skärmar */
@media (max-width: 768px) {
	body {    
		text-align: center;
	}
    #main {
        margin: 5%;
        padding: 15px;
    }

    body {
        font-size: 18px;
    }

    .imgLogo {
        max-width: 90%;
    }

    .imgLogoTxt {
        max-width: 100%;
    }
}
