@import url('reset.css');

* {
    font-family: 'Roboto', sans-serif;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    height: 100vh;    
    background-image: url('../img/back.jpg');
    background-size: cover;
    background-position: center;
}

.game-header {
    display: flex;
    flex-direction: column;
    margin-top: 3rem;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.title, .subtitle {
    font-family: "Press Start 2P", cursive;
}

.title {
    font-size: 3.5rem;
    letter-spacing: 17px;
    color: #f00;
}

.subtitle {
    margin-top: 2rem;
    line-height: 1.7rem;
    font-size: 1.3rem;
    width: 44%;
    color: #000;
}

.container {
    margin-top: 7em;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.container .box .btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.box {
    width: 26%;
    height: auto;
    padding: 2rem;
    background: rgba(57, 165, 118, 0.8);
    background-size: cover;
    border-radius: 16px;
    box-shadow: 0 4px 8px rgb(57, 165, 118);
}

.container h1 {
    font-family: "Roboto", cursive;
    font-size: 2.6em;
    margin-bottom: 20px;
    color: #031d57;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

.btn {
    background-color: #007bff;
    color: #fff;
    margin-top: 35px;
    padding: 10px;
    border: none;
    border-radius: 10px 0 10px 0;
    cursor: pointer;
    font-size: 1.4rem;
}

.btn:hover {
    background-color: #0056b3;
}

.output {
    margin-top: 35px;
    font-size: 1.5rem;
    color: #fff;
    font-weight: bold;
}