@import url('https://fonts.googleapis.com/css2?family=Jura&display=swap');

body {  
    margin: 0;
    background: transparent;
    height: 100vh;
    overflow: hidden;
    font-family: 'Jura', sans-serif; /* Use the Jura font */
    color: #dbd1d1; /* Set the text color to creme white */
}

#info {
    position: absolute;
    z-index: 1;
    bottom: 2em; /* Position at the bottom of the page with 20px of space */
    left: 50%; /* Center horizontally */
    transform: translateX(-50%); /* Adjust for the div's width */
    font-size: 1.2em; /* Make the font larger */
    text-align: center; /* Center the text within the div */
    color: #674848; /* Make the text white */
}

#menu {
    position: absolute;
    top: 10px;
    right: 30px;
    z-index: 1;
    font-size: 20px; /* Make the font larger */
    color: #dbd1d1; /* Make the text white */
    display: flex;
    flex-direction: column;
    gap: 8px;
}

h1 {
    color: #dbd1d1; /* Set the text color to creme white */
}

a {
    color: inherit;
    text-decoration: none;
    position: relative;
}

a::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #ffcc00; /* Set the color of the underline */
    visibility: visible;
    transform: scaleX(0.35);
    transition: all 0.15s ease-in-out;
}

a:hover::before {
    visibility: visible;
    transform: scaleX(1);
}

button {
    border: 2px solid #190303;
    image-rendering: pixelated;
    display: inline-block;
    padding: 10px 20px;
    background-color: #a75e5e;
    color: rgb(0, 0, 0);
    font-size: 1em;
    text-transform: uppercase;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.01s ease-in, filter 0.05s ease-in-out;
    filter: drop-shadow(-1px 4px rgba(0,0,0,0.4));
}

button:hover {
    color: rgb(255, 179, 0);
    background-color: #bb2f10;
    transition: background-color 0.1s ease-in,
}

button:active {
    color: rgb(240, 236, 191);
    background-color: #ffc400;
    filter: drop-shadow(0px 0px rgba(0,0,0,0.5)); /* Move the shadow to the top left when the button is pushed */
    transform: translate(-1px, 3px); /* Move the button to the top left when pushed */
    transition: transform 0.05s ease-in-out; /* Add transition effect */

}