*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow: hidden;
}
body {
    background: linear-gradient(45deg, #3E2C1C, #5A3D2B);
    color: #FFD700;
    font-family: Arial, sans-serif;
    text-align: center;
    padding: 20px;
    animation: backgroundMove 10s infinite alternate;
}

@keyframes backgroundMove {
    0% { background-position: left top; }
    100% { background-position: right bottom; }
}
header {
    background-color: #8B4513;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
    animation: fadeIn 2s ease-in-out;
}
.section {
    background: rgba(255, 165, 0, 0.2);
    margin: 20px auto;
    padding: 20px;
    border-radius: 10px;
    max-width: 800px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;

}

.section button:hover {
    background-color: #ffcc33;
}

.section p {
    margin: 10px;
    color: white;
}

.section button {
    background-color: #FFD700;
    color: #3E2C1C;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
    margin-top: 10px;
}

.section a{
    color: black;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

#start{
    color: red;
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 100px;
}
