@font-face {
    font-family: 'Martian Mono';
    src: url(MartianMono.ttf)
}

.custom-font-brand {
    font-family: 'Martian Mono', sans-serif;
    font-size: clamp(0.75rem, 2vw, 1rem);
}

.custom-font {
    font-family: 'Martian Mono', sans-serif;
    font-size: clamp(0.25rem, 2vw, .75rem);
}

[id="mini_logo"] {
    border-radius: 50%;
    width: auto;
    height: clamp(1.5rem, 5vw, 2.5rem);
    margin-right: 0.05rem;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
    background-color: rgb(64, 85, 125);
    color: white;
    font-family: Arial, Helvetica, sans-serif;
}

main {
    flex: 1;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
}

[id="slogan"] {
    font-family: 'Courier New', Courier, monospace;
}

figure {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

figure.animate-in {
    opacity: 1;
    transform: translateY(0);
}

section {
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 768px) {
    figure {
        transform: translateX(-20px);
    }

    figure.animate-in {
        transform: translateX(0);
    }

    section {
        transform: translateX(20px);
    }

    section.animate-in {
        transform: translateX(0);
    }
}

[id="navigation-bar"] {
    max-width: 1200px;
}

[id="footer"] {
    max-width: 1200px;
}

.custom-pop-section {
    background-color: white; /* or any other contrasting background */
    z-index: 10; /* makes sure it stacks above other items */
    position: relative; /* required for z-index to take effect */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  /* Optional hover effect */
  .custom-pop-section:hover {
    transform: translateY(-4px);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2); /* deeper shadow on hover */
  }