@font-face {
    font-family: 'GermaniaOne-Regular';
    src: url('./fonts/GermaniaOne-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: GermaniaOne-Regular, sans-serif, system-ui;
    font-size: 16px;
    display: flex;
    width: 100vw;
    height: 100vh;
    margin: 0;
    background: #454F2D;
}

h1 {
    font-size: 30px;
}

.container {
    margin: auto;
    display: flex;
    flex-direction: column;

    h1 {
        text-align: center;
    }

    img {
        width: 144px;
    }

    div {
        margin: auto;
    }
}

.row {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 10px;
}

.room {
    font-family: GermaniaOne-Regular, sans-serif, system-ui;
    width: 200px;
    padding: 10px 20px;
    border: 1px solid #37a130;
    font-size: 16px;
}

button {
    font-family: GermaniaOne-Regular, sans-serif, system-ui;
    padding: 5px 10px;
    font-size: 16px;
    background-color: #797F3E;
    border: 1px solid #534332b3;
    color: #fff;
}