body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}
p {
    margin: 0;
}
h1 {
    margin: 0;
}
.title-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 50svh;
}

.title-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transform-origin: top;
    z-index: 1;
}

.title {
    text-align: center;
    margin: 10px;
    font-size: 50px;
}
.under-title {
    max-width: 495px;
    text-wrap: normal;
    text-align: center;
    margin: 10px;
}
.selection {
    position: relative;
    z-index: 0;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    height: 50svh;
}
.select-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.select-option-button {
    background-color: white;
    border: none;
    padding: 25px;
    color: black;
    font-size: 24px;
    cursor: pointer;
    text-decoration: none;
    border-radius: 5px;
    border: transparent;
    box-shadow: 0 2px 2px rgba(0,0,0,50%);
}
.select-option-button:hover {
    box-shadow: 0 5px 5px rgba(0,0,0,50%);
}
.search-selection {
    background-color: hsla(195,86.2745098%,20%);
}
.surcharge-selection {
    background-color: burlywood;
}