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

body {
    font-family: 'Fredoka', Arial, sans-serif;
    background-color: #a5a5bb;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.header {
    background-color: #342559;
    color: #bbb;
    text-align: center;
    justify-content: center;
    padding: 1rem 0;
    padding-bottom: 2.5rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    
    -webkit-mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
}

.footer {
    text-align: center;
    padding: 1rem 0;
    background-color: #333;
    color: white;
}

#vidlink {
    margin-top: 1.5em;
    margin-bottom: 1.5em;
    text-align: center;
    font-size: max(16px, 1.6em);
}

#main-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
}

img {
    max-width: 75%;
    max-height: 50vh;
    
    width: auto;
    height: auto;
    
    margin-bottom: 2%;
    
    cursor: pointer;
}

#overlay {
    background: rgba(1,1,1,0.8);
    position: fixed;
    display: flex;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

#overlay[hidden] {
  display: none;
}

#overlay-pic {
    z-index: 1000;
    max-width: 90vw;
    max-height: 90vh;
    box-shadow: 0 0 20px black;
    display: block;
}

/* Game Wrapper Styling */
#game-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    
}

@media (max-width: 480px) {
    
}
