
/* ELEMENT  STYLES */

body {
    width: 100%;
    height: 100vh;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.7) 130%), #737373;

}

@font-face {
    font-family: 'Spicy-Rice';
    src: url('../fonts/SpicyRice-Regular.ttf') format('truetype'); 
}

@font-face {
    font-family: 'Bebas-Neue';
    src: url('../fonts/BebasNeue-Regular.ttf') format('truetype');
}

.title {
    font-family: 'Spicy-Rice';
    font-size: 30px;
    color: black;
}

.help-text {
    font-family: 'Bebas-Neue';
    font-size: 18px;
    letter-spacing: 3px;
}

main {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-content: center;
    text-align: center;
}

button:hover {
    cursor: pointer;
    transform: scale(1.1);

}

.languages {
    transition: transform .2s;
    background-color: transparent;
    flex-direction: row;
    text-align: end;
    margin-right: 20px;
}

.languages img {
    transition: transform .2s;
    width: 50px;
    height: 50px;
    margin-right: 10px;
}

.languages img:hover {
    cursor: pointer;
    transform: scale(1.2);
}

.menu {
    background-color: rgba(255, 255, 255, 0.685);
    border-radius: 15px;
    width: 60%;
    justify-content: center;
    margin: auto;
    padding: 20px;
    margin-top: 100px;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.581);
}

.play {
    background-color: rgb(0, 0, 0);
    border-radius: 15px;
    width: fit-content;
    border-color: aqua;
    border-width: 3px;
    transition: transform .2s;
    padding: 10px;
    color: white;
}