body {
    margin: 0;
    padding: 0;
}

h1 {
    color: #c01215;
    font-family: "Comfortaa", sans-serif;
    font-weight: 900;
    margin: 0 0 0 0;
}

h2 {
    color: #c01215;
    font-family: "Comfortaa", sans-serif;
    margin: 40px 4px 4px 4px;
    text-decoration: underline 1px;
}

h3 {
    margin: 0;
    padding: 0;
    color: #ffffff;
    font-family: "Comfortaa", sans-serif;
    font-weight: 500;
}

h4 {
    margin: 3px;
    color: #000000;
    font-family: "Comfortaa", sans-serif;
}

a {
    color: white;
    text-decoration: none;
    font-family: "Fjalla One", sans-serif;
    font-weight: 300;
}

a:hover {
    text-decoration: underline;
    color: #ffc4c4;
}

.heart {
    margin-top: 5px;
    width: 100px;
}

#ulMenu {
    margin-top: 0;
    width: 150px;
}

hr {
    width: 65%;
}

#header {
    background-image: url(./images/bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#nav {
    display: flex;
    gap: 6px;
    padding: 2px;
    margin-right: 5px;
}

#logo {
    height: 60px;
    margin: 5px;
    margin-bottom: -18px;
    margin-top: -10px;
}

.top {
    display: flex;
    justify-content: space-between;
    margin: 0 6px;
}

#cafe {
    width: 100%;
    height: 35vh;
    object-fit: cover;
}

.menu {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.gridContainer {
    display: grid;
    width: 100%;
    max-width: 75%;
    justify-self: center;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    margin-top: 25px;
    margin-right: 10vw;
}

.gridItem {
    justify-self: center;
    text-align: center;
}

.cake {
    height: 200px;
    justify-self: center;
}

.description {
    margin: 10px 2px 2px 2px;
}

@media (max-width: 800px) {
    .gridContainer {
        max-width: 100%;
    }

    hr {
        width: 75%;
    }

    .cake {
        margin-left: 30px;
    }
}

