body {
    margin: 0;
    font-family: Arial, sans-serif;
    overflow: hidden;
}

.launcher-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    position: relative;
    color: white;
    text-align: center;
}

.background {
    background: url('../assets/background/panorama-shaders.png') no-repeat center center/cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    filter: none;
    opacity: 0.8;
}

.content {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

h1 {
    margin-bottom: 20px;
    font-size: 2rem;
}

h2 {
    margin-bottom: 20px;
    font-size: 1vw;
    font-weight: bold;
    text-align: center;
    line-height: 1.5;
}


button {
    background-color: #0078D7;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
    margin-bottom: 20px;
}

button:hover {
    background-color: #005EA6;
}

.menu {
    margin-top: 10px;
}

label, select {
    font-size: 1rem;
    color: black;
}
