/* Set up body to fill screen and center content */
body {
    margin: 0;
    padding: 0;
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
}

/* Flex container to stack the title and buttons */
#main_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Title styling */
#welcome_container {
    font-family: "Plaster", system-ui;
    font-size: 15vw;
    margin-bottom: 5vh;
}

/* Button group styling */
#button_container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2vw;
}

/* Keep your existing button style */
button {
    font-family: 'Courier New', Courier, monospace;
    border-radius: 10vw;
    width: 30vw;
    background-color: white;
    font-size: 5vw;
    padding: 1%;
    margin: 0 1%;
    z-index: 2;
    box-shadow: 0px 0px 0px black;
    transition: all 0.25s ease, opacity 0s;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

button:hover {
    border-radius: 1vw;
    box-shadow: 2px 10px 20px black;
}

@media (hover: none) and (pointer: coarse) {
    button:hover {
        border-radius: 10vw;  /* Keep original values */
        box-shadow: 0px 0px 0px black;
    }
}

#warning_container {
    position: fixed;
    bottom: 15%;
    left: 50%;
    width: 90vw;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 2vw;
    border-radius: 25px;
    box-shadow: 0px 0px 10px black;
    z-index: 1000;
    
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: none;
    transition: opacity 0.5s ease-in-out;

    box-shadow: 0px 0px 0px black;
    transition: all 0.25s ease, opacity 0s;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}
#warning_container p {
    font-size: 4vw;
    margin: 0;
    font-family: 'Courier New', Courier, monospace;
}

#main_carousel {
    position: absolute;
    width: 100%;
    height: 100vh;
    top: 0%;
    overflow: hidden;
    z-index: -4;
}

img {
    bottom: 0;
}

.glass {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  position: relative;
}