

body {
    background-image: url(https://t3.ftcdn.net/jpg/04/94/52/46/360_F_494524607_aDLrF9Da40LIz1YBH4THqxuFgqHL40Ay.jpg);
    font-family: sans-serif, Arial;
}


.game {
    font-size: 100px;
    color: #c40c0c;
    height: auto;
}


.container {
    height: 95vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.header {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to right, #4B4949, #A1ACAC);
    padding: 15px 40px;
    border-radius: 20px;
}


.header h1 {
    color: white;
    font-size: 40px;
    height: 80px;
    width: 500px
}

.cat-icon {
    width: 150px;
    height: auto;
}

.text_container {
    border: none;
    border-radius: 20px;
    background-color: rgba(48, 48, 48, 0.945);

}


.text_container p {
    color: white;
    width: 40vw;
    height: 4.5vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 25px 80px;
    text-align: center;
}


.text_container h2 {
    color: #c40c0c;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}



.button-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 250px;
}


button {
    font-size: 30px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    color: white;
    width: 350px;
    height: 60px;
}

.start-btn {
    background-color: #8b0000;
}

.tutorial-btn {
    background-color: #8b0000;
}

.register-btn {
    background-color: #4B4949;
}

.login-btn {
    background-color: #A1ACAC;
}


button:hover {
    opacity: 0.8;
}
