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

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to right, #fbc2eb, #a6c1ee);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.game-container {
    background-color: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 600px;
}

.header {
    text-align: center;
    margin-bottom: 2rem;
}

.header h1 {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
    color: #222;
}
.header p {
    margin-top: 2rem;
}

.start-section {
    margin-bottom: 2rem;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
}

.start-btn {
    display: flex;
    align-items: center; 
    justify-content: center; 
    width: 100px;
    height: 3rem;
    border-radius: 12px;
    background: linear-gradient(145deg, #6366f1, #4f46e5);
    color: white;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    border: none;
    margin-top: 1rem;
}


.start-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(79, 70, 229, 0.3);
}

.start-btn:active {
    transform: translateY(-1px);
}

.logo {
    width: 250px;
    height: 180px;
    margin: 1rem;
}

.logo img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}