html, body {
    margin: 0;
    padding: 0;
    font-family: 'Aleo', serif;
}

header {
    height: 20vh;
    background-color: rgb(183, 183, 183);
}

main {
    height: calc(60vh - 10px);
    padding: 5px;
    overflow: scroll;
}

footer {
    height: 20vh;
    background-color: black;
    position: relative;
}

#footer-menu {
    height: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

#footer-menu .menu-button {
    color: white;
    margin: 0 5px;
    border: 1px solid white;
    height: calc(100% - 10px);
    min-width: 15%;
    display: inline-block;
    padding: 5px 5px;
    text-align: center;
    transition: 0.5s;
    cursor: pointer;
}

#footer-menu .menu-button .menu-button-icon {
    font-size: 2.5em;
}

#footer-menu .menu-button:hover {
    background-color: rgb(213, 49, 49);
}

.terminal-button {
    border: 1px solid black;
    margin: 5px;
    display: inline-block;
    font-weight: bold;
    text-align: center;
    padding: 5px;
    position: relative;
    cursor: pointer;
    transition: 0.3s;
}

.terminal-button-icon {
    font-size: xx-large;
}

.terminal-button:hover {
    background-color: rgb(213, 49, 49);
    color: white;
}

.location-button {
    border: 1px solid black;
    margin: 5px;
    display: inline-block;
    font-weight: bold;
    text-align: center;
    padding: 5px;
    position: relative;
    cursor: pointer;
    transition: 0.3s;
}

.location-button-icon {
    font-size: xx-large;
}

.location-button:hover {
    background-color: rgb(213, 49, 49);
    color: white;
}

#payment-details {
    float: right;
}

#terminal-details {
    float: left;
}