.preMenu {
    display: grid;
    place-items: center;
    height: 25dvh;
}

.menu {
    background-color: lightblue;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 15px;
    height: 50dvh;
    margin-left: 10%;
    margin-right: 10%;
    border-radius: 20px;
    border: 2px solid black;
}

.menu h1 {
    font-family: "Archivo Black", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.menu h1 sub {
    font-family: "Archivo Black", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: large;
}

.menu select,
.menu input {
    width: 220px;
    box-sizing: border-box;
    text-align: center;
}

.menu select {
    padding-right: 20px;
    padding-left: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    border: 1px solid black;
    background-color: white;
    border-radius: 10px;
    font-family: "Archivo Black", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.menu input {
    border: 1px solid black;
    border-radius: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.menu input::placeholder {
    text-indent: 5px;
    font-family: "Archivo Black", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.menu button {
    font-family: "Archivo Black", sans-serif;
    font-weight: 400;
    font-style: normal;
    border: 1px solid black;
    padding-right: 20px;
    padding-left: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 10px;
}

.menu button:active {
    background-color: rgb(221, 220, 220);
}