
@font-face {
    font-family: 'Heavitas';
    src: url('Heavitas.ttf') format('truetype');
}

body {
    font-family: 'ExtraBeige', sans-serif;
    margin: 0;
    padding: 0;
    overflow: hidden; /* Prevent scrolling */
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('Background.png') no-repeat center center fixed;
    background-size: cover;
    filter: blur(10px); /* Increase blur effect */
    z-index: -1; /* Place it behind the content */
}

.start-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
    flex-direction: column;
    position: relative;
    z-index: 1; /* Ensure it is above the blurred background */
}

.start-menu h1 {
    font-family: 'Heavitas', sans-serif;
    font-size: 64px; /* Increase font size */
    color: rgb(255, 255, 255); /* Set text color */
    margin-bottom: 30px; /* Add some space below the heading */
}

.start-menu button {
    font-family: 'Heavitas', sans-serif;
    font-size: 40px; /* Increase font size */
    padding: 25px 50px; /* Increase padding */
    margin: 15px; /* Increase margin */
    border: 4px solid rgb(255, 255, 255);
    background-color: transparent;
    color: rgb(255, 255, 255);
    cursor: pointer;
    width: 350px; /* Increase width */
    height: 80px; /* Increase height */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.start-menu button:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.start-menu button#startButton {
    cursor: pointer;
}
