@font-face {
    font-family: 'Homepage Baukasten Bold';
    src: url('HomepageBaukasten-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

/* Resetting default margins and paddings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: 'Homepage Baukasten Bold', Arial, sans-serif;
    text-transform: uppercase; /* Makes all text uppercase */
    overflow: hidden; /* Prevents scrolling */
}

body {
    background-color: #000; /* Black background */
    color: #fff; /* White text */
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

#matrix {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2; /* Ensures content is above the matrix rain */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
    text-align: center;
}

.centered-text {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.business-email {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.business-email a {
    color: #fff;
    text-decoration: none;
}

.button-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.button {
    font-size: 1rem;
    padding: 10px 20px;
    text-decoration: none;
    color: #fff;
    background-color: #333;
    border: 1px solid #fff;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.button:hover {
    background-color: #fff;
    color: #000;
}

#image-container img {
    border-radius: 10px; /* Rundede kanter */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); /* Skygge for bilder */
    background-color: #fff; /* Midlertidig bakgrunn for å se bildene tydelig */
    z-index: 10; /* Sørger for at bildene vises over matrix-regnet */
    animation: pulse 1s infinite ease-in-out; /* Legger til puls-animasjon */
}

/* Animere pulsering for størrelsesendring av bilder */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.5);
    }
    100% {
        transform: scale(1);
    }
}

.easter-hint {
    margin-top: 8px;
    margin-bottom: 40px;
    text-align: center;
    font-size: 0.95rem;
    color: #fff;
    font-style: italic;
}
