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

body, html {
    width: 100%;
    height: 100%;
    overflow: auto;
    font-family: Arial, sans-serif;
}

.container {
    background: url('./assets/background.png') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    color: white;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.title {
    font-size: 3em;
    margin-bottom: 40px;
}

.buttons {
    display: flex;
    gap: 15px;
}

.button {
    padding: 12px 25px;
    border: 2px solid #007acc;
    border-radius: 5px;
    background-color: transparent;
    color: #007acc;
    font-size: 1em;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.button:hover {
    background-color: #007acc;
    color: white;
    border-color: #005f99;
}

.instructions-container {
    background: url('./assets/background.png') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 20px;
    min-height: 100vh;
    color: white;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.instructions-content {
    background: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 10px;
    max-width: 800px;
    margin-top: 20px;
}

.instructions-content h2 {
    font-size: 1.8em;
    margin-top: 20px;
    margin-bottom: 10px;
}

.instructions-content ol,
.instructions-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.instructions-content li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.instructions-content p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.instructions-content .button {
    margin-top: 20px;
}