html, body {
    margin: 0;
    height: 100%;
    overflow: hidden;
    /* background-color: black;*/ 
}
body {
    background-image: url("/images/meter-background.png");
    background-repeat: no-repeat;
    background-size: cover;
}
.meter {
    display: flex;
    justify-content: center; /* Horizontally center */
    align-items: center; /* Vertically center */
    height: 100%; /* Adjust as needed */
    width: 70%;
    overflow: hidden;
    margin: auto;
    margin-top: -40px;
    filter: brightness(150%);
    z-index: 0;  
    position: relative;
    /* Animation properties */
    animation: zoomOut 1s cubic-bezier(1,.7,1,.7) forwards;
    opacity: 0;
}

/* Keyframes for zoom out and fade in */
@keyframes zoomOut {
    0% {
        transform: scale(2); /* Start zoomed in at 200% */
        opacity: 0; /* Fully transparent */
    }
    100% {
        transform: scale(1); /* Zoom out to 100% (normal size) */
        opacity: 1; /* Fully opaque */
    }
}

img {
    width: 12.5%;
    object-fit: contain;
}
.center {
    text-align: center;
    margin-top: -75px;
}
.world-line {
    font-size: 48px;
}


.link-lines {
    position: relative;
    margin-top: -40px;
    display: flex;
    gap: 60px;
    justify-content: center;
    z-index: 1;
}

@media only screen and (max-width: 1000px) { /*Smaller screens*/
    .meter {
        margin-top: -100px;
        width: 100%;
    }
    .link-lines {
        margin-top: 60px;
    }
    .center {
        margin-top: 0px;
    }
    .world-line {
        font-size: 48px;
    }
}

@media only screen and (max-height: 600px) {
    .meter {
        margin-top: 0px;
    }
    .link-lines {
        margin-top: 0px;
    }
}

a {
    color: yellow; /* Default link color */
}

a:visited {
    color: yellow; /* Color of visited links */
}

a:hover {
    color: yellow; /* Color when hovering over a link */
}

a:active {
    color: yellow; /* Color when a link is active (being clicked) */
}
/* Style the video: 100% width and height to cover the entire window */
#background {
    position: fixed;
    top: 50%;
    left: 50%;
    width: auto;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    z-index: -1;
    filter: brightness(20%);
}

