/* General Body Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #000000; /* Black background */
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
}

/* Header Styles */
header {
    width: 100%;
    padding: 20px 0;
    background-color: #000000; /* Black background for the header */
    display: flex;
    flex-direction: column;
    align-items: center;
}

header img {
    max-width: 200px; /* Adjust the size as needed */
    height: auto;
    margin-bottom: 20px;
}

/* Navigation Menu */
nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

nav ul li {
    margin: 0;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
}

nav ul li a:hover {
    text-decoration: underline;
}

/* Main Content */
main {
    flex: 1;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

main h1 {
    font-size: 2.5em;
    letter-spacing: 0.1em;
    margin-top: 20px;
    margin-bottom: 40px;
}

/* Footer Styles */
footer {
    width: 100%;
    background-color: #000000; /* Black background for the footer */
    padding: 20px 0;
    font-size: 0.9em;
    text-align: center;
    position: fixed;
    bottom: 0;
}

/* Links */
a {
    color: #00aaff; /* Light blue links */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Loading Animation Styles */
.loading-view {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    background: #000000; /* Black background for loading screen */
}

.loading-container {
    width: 72px;
    height: 72px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 12px;
}

.dot-container {
    width: 100%;
    height: 100%;
    background: linear-gradient(#007acc20, #007acc);
    mask-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii0xIC0xIDIgMiI+Cgk8Y2lyY2xlIHI9IjEiLz4KPC9zdmc+Cg==');
    mask-repeat: no-repeat;
    mask-size: 100% auto;
    animation: loading-view-movement 3.75s cubic-bezier(0.8, 0, 0.8, 1) infinite;
}

.dot-container:nth-of-type(2) {
    animation-delay: 0.13s;
}

.dot-container:nth-of-type(3) {
    animation-delay: 0.26s;
}

@keyframes loading-view-movement {
    0%, 27%, 54% {
        mask-position: bottom;
    }
    14%, 41%, 68% {
        mask-position: top;
    }
}
