* {
    margin: 0;
}

header {
    color: #fff;
    text-align: left;
}

a {
    font-size: 25pt;
    font-family: 'Garamond';
    color: #fffdfa;
    text-align: center;
    background-color: rgb(65, 65, 65);
    text-decoration: none;
}

h1 {
    font-size: 65pt;
    font-family: 'Garamond';
    color: #fff;
    background-color: transparent;
    text-align: center;
    margin: 0;
}

h2 {
    font-size: 40pt;
    font-family: 'Georgia';
    font-weight: bold;
    color: #24100c;
    text-align: left;
    margin-bottom: 1%;
}

h3 {
    font-size: 18pt;
    font-family: 'Georgia';
    font-weight: bold;
    color: #fffdfa;
    text-align: center;
    padding: 5%;
    background-color: rgb(65, 65, 65);
}

h4 {
    font-size: 14pt;
    font-family: 'Georgia';
    color: #fffdfa;
    text-align: center;
    background-color: rgb(65, 65, 65);
}

h5 {
    font-size: 20pt;
    font-family: 'Georgia';
    font-weight: bold;
    color: rgb(65, 65, 65);;
    text-align: center;
}

p {
    word-wrap: normal;
}

body {
    font-size: 20pt;
    font-family: 'Georgia';
    color: #24100c;
}

#logo {
    max-width: 30%;
    padding: 2.5%;
}

#logoBlack {
    background-color: rgb(65, 65, 65);
    color: rgb(65, 65, 65);
}

.navbar {
    display: flex;
    justify-content: right;
    align-items: center;
    background-color: rgb(65, 65, 65);
    color: white;
    padding: 1%;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-right: 20px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #0030F2;
}

.line {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
}

.container {
    position: relative;
    align-items: center;
    text-align: center;
}

.container video {
    position: relative;
    z-index: 0;
    align-items: center;
    text-align: center;
}

.flavourTitle {
    margin: 2%;
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25%, 1fr));
    gap: 10%;
    padding: 10%;
    padding-top: 0;
}

.image-item {
    text-align: center;
}

.image-item img {
    max-width: 100%;
    height: auto;
}

.image-item p {
    margin-top: 10px;
    font-size: 16px;
}

.image-item h5 {
    text-align: center;
}

.galleryRow {
    display: flex;
    flex-direction: row;
    flex: 0 1 auto;
}

.galleryColumn {
    float: left;
    max-width: 33.33%;
}

.galleryRow::after {
    content: "";
    clear: both;
    display: table;
}

#gallery {
    margin-top: 1%;
}

img {
    vertical-align: middle;
}

#footer {
    margin-top: 2.5%;
    text-align: center;
    background-color: rgb(65, 65, 65);
    color: rgb(65, 65, 65);
}

.image {
    width: 100%;
    height: auto;
}

#contact {
    padding-bottom: 2.5%;
    padding-top: 2.5%;
    background-color: rgb(65, 65, 65);
    color: rgb(65, 65, 65);
}

.contactRow {
    display: flex;
    flex-direction: row;
    flex: 0 1 auto;
    justify-content: center;
    align-items: center;
    background-color: rgb(65, 65, 65);
    color: rgb(65, 65, 65);
}

.contactColumn {
    float: none;
    margin: 0 5%;
    vertical-align: middle;
    background-color: rgb(65, 65, 65);
    color: rgb(65, 65, 65);
}

.column:hover {
    z-index: 10;
    transform: scale(1.1) rotate(0.001deg);
}

/* Clear floats after image containers */
.row::after {
    content: "";
    clear: both;
    display: table;
}

.contactRow::after {
    content: "";
    clear: both;
    display: table;
}

img {
    vertical-align: middle;
}

@media only screen and (max-width: 1000px) {
    h1 {
        font-size: 50pt;
    }

    h5 {
        font-size: 18pt;
    }
}

@media only screen and (max-width: 750px) {
    h1 {
        font-size: 40pt;
    }

    h5 {
        font-size: 16pt;
    }
}

@media only screen and (max-width: 600px) {
    h1 {
        font-size: 30pt;
        text-align: center;
    }

    h5 {
        font-size: 14pt;
    }

    #contact {
        padding-top: 10%;
        padding-bottom: 10%;
    }

    .contactRow {
        flex-direction: column;
    }

    .contactColumn {
        margin: 5% 5%;
    }

    .galleryRow {
        flex-direction: column;
    }

    .galleryColumn {
        max-width: 100%;
    }

}

@media only screen and (max-width: 500px) {

    a {
        font-size: 12pt;
    }
}

@media only screen and (max-width: 450px) {
    h1 {
        font-size: 20pt;
    }
}