/* styles.css */
:root {
    --primary-color: #00805A;
    --text-color: #ffffff;
    --secondary-color: #1E3D59;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    width: 100%; /* Adjust the size as needed */
    height: 100vh; /* Full viewport height */
    background-image: radial-gradient(#016F53 2px, transparent 2px), radial-gradient(#016F53 2px, transparent 2px);
    background-size: 32px 32px; /* Grid size of the pattern */
    background-position: 0 0, 16px 16px; /* Starting position of the two patterns */
    background-color: #018060; /* Background color */
    
    /* Animating background position */
    animation: movePattern 10s linear infinite;
    height: 100vh; /* Full viewport height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.container {
    text-align: center;
    padding: 2rem;
    max-width: 800px;
    margin-top: 5vh;
}

.logo {
    color: var(--text-color);
    font-weight: bold;
    letter-spacing: 2px;
}

.logo-img {
    margin-top: 20px;
    max-width: 30vw;
}

.subtitle {
    background-color: var(--text-color);
    color: var(--primary-color);
    padding: 0.5rem 2rem;
    display: inline-block;
    text-transform: uppercase;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-family: 'Atkinson Hyperlegible', sans-serif;
    letter-spacing: 1rem;
    font-weight: bold;
}

.message {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.6;
    font-family: 'Atkinson Hyperlegible', sans-serif;
    margin-bottom: 2rem;
    max-width: 80%;
    margin: 0 auto 2rem;
}

.dots-container img {
    width: 100%;
    width: 50vw;
    max-width: 560px;
}

@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .logo {
        font-size: 2.5rem;
        margin-bottom: 0px;

    }

    .logo-img {
        width: 50vw;
        max-width: 560px;
    }
    
    
    .message {
        font-size: 1rem;
        max-width: 95%;
    }

    .subtitle {
        font-size: 1rem;

    }
}


@keyframes movePattern {
    0% {
      background-position: 0 0, 16px 16px; /* Starting position */
    }
    100% {
        background-position: 136px 136px, 152px 152px; /* Move the pattern */
    }
  }