@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville&family=Noto+Sans:wght@400;700&family=Roboto:wght@400;700&family=Vast+Shadow&display=swap');

header {
    text-align: center;
    margin: 20px;
    padding: 10px;
    background-color: #eed3b3;
    border-radius: 30px;
    position: fixed;
    top: 0px;
    width: calc(100% - 60px);
    z-index: 10;
}

header h1 {
    font-family: 'Vast Shadow', sans-serif;
    text-transform: uppercase;
    font-size: 3rem;
    display: inline-block;
}

nav ul {
    list-style: none;
    display: inline-block;
    padding: 0;
    transition: display 500ms;
}

nav li {
    display: inline-block;
    padding: 0;
}

nav a {
    text-decoration: none;
    color: inherit;
    padding: 15px;
    background-color: #ffe4c4;
    border-radius: 20px;
    font-size: 1rem;
    transition: font-size 500ms, margin-top 200ms, background-color 200ms;
}

nav a:hover {
    background-color: #ddc2a2;
    font-size: calc(1rem + 10px);
}

.button {
    text-decoration: none;
    color: inherit;
    padding: 15px;
    background-color: #eed3b3;
    border-radius: 20px;
    font-size: 1rem;
    transition: background-color 200ms;
    border: none;
    cursor: pointer;
}

.button-container {
    text-align: center;
}

.button:hover {
    background-color: #ddc2a2;
}

.button-alt {
    background-color: #ffe4c4;
}

body {
    background-color : #ffe4c4;
    color: #222222;
    font-family: 'Libre Baskerville', sans-serif;
    margin: 0;
}

.cover {
    text-shadow: -1px 1px 0 #000000, 1px 1px 0 #000000, 1px -1px 0 #000000, -1px -1px 0 #000000;
    text-align: center;
    width: 100%;
    padding: 25% 0px;
    background-image: url("/assets/img/coffee.png");
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 10;
}


.cover-tagline {
    font-size: 2rem;
    color: #dddddd;
}

.flex {
    display: flex;
}

.img-container {
    width: 33%;
    margin: 10px;
}

img {
    width: 100%;
    border-radius: 30px;
}

@media screen and (max-width: 950px) {
    .cover-tagline {
        margin: 25% 0;
    }
}

@media screen and (max-width: 750px) {
    .flex {
        flex-direction: column;
    }
    .img-container {
        width: 96.5%;
        margin: 10px, 0;
    }
}

@media screen and (max-width: 600px) {
    .cover-tagline {
        margin-top: 50%;
    }
}

main {
    margin: 10px;
}

.top {
    margin-top: 280px;
}

section {
    margin: 20px;
    padding: 20px;
    background-color: #eed3b3;
    border-radius: 30px;
}

footer {
    text-align: center;
}

footer ul {
    list-style: none;
    display: inline-block;
    padding: 0;
}

footer li {
    display: inline-block;
    padding: 0;
}

footer a {
    color: #000000;
    font-weight: bolder;
    text-decoration: none;
}

.title {
    text-align: center;
}

.center {
    text-align: center;
}

.extrapad {
    padding: 30px;
}

form {
    text-align: center;
}

label {
    text-align: center;
    font-size: 20px;
}

input {
    border: 2px solid #222222;
    font-size: 20px;
    padding: 5px;
    border-radius: 20px;
    background-color: #ffe4c4;
    font-family: inherit;
    text-align: center;
}

select {
    border: 2px solid #222222;
    font-size: 20px;
    padding: 5px;
    border-radius: 20px;
    background-color: #ffe4c4;
    font-family: inherit;
    text-align: center;
}

input[type=checkbox] {
    vertical-align: middle;
}

.pumps {
    width: 60px;
}

#ext::-webkit-outer-spin-button,
#ext::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none;
}

#ext {
    width: 70px;
    -moz-appearance: textfield;
    appearance: textfield;
    width: 70px;
}

.hidden {
    display: none
}

#note {
    color: inherit;
    font-weight: bolder;
}

.img-container {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
}

.ul-wrapper {
    text-align: center;
}

ul {
    display: inline-block;
    text-align: left;
}