* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #1a1a2e;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-image: url('../img/wallpaper.jpg');
}

.container {
    text-align: center;
}

h1 {
    color: #e94560;
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    font-family: 'Poppins', sans-serif;
}

button {
    background-color: #4CAF50;
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 20px 0;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}

button:hover {
    background-color: #45a049;
}

canvas {
    border: 2px solid #e6e0e0;
    width: 90vw;
    height: 50vh;
    background-color: #5a5771;
    box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
}
input {
    position:fixed;
    left:-2000px;
    display:none;
    background-color: #1a1a2e;
    display: none;
}
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    button {
        padding: 10px 24px;
        font-size: 14px;
    }

    canvas {
        width: 85vw;
        height: 40vh;
    }
}
