/* CSS Reset */
body, header,nav, main, footer,h1 {
    margin: 0;
    padding: 0;
    border: 0;
}




body {
    background-color: white;
}

/* Style rules for body and image */
/* Style rules for mobile viewport*/

/* Style rules to show mobile class and hide tab-desk class*/
.mobile {
    display: none;
}

.tab-desk {
    display: block;
}

/* Style rule for header area */
.mobile h1 {
    font-family: 'Emblema One', cursive;
    padding: 2%;
    text-align: center;
    display: block;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}


h1 {
    color: white;
    background-color: red;
    font-family: Arial, Helvetica, sans-serif;
    font-style: italic;
    font-size: large;
    padding: 8px;
    margin: 0px;
    text-align: center;
}

nav a {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 40px;
    text-decoration: none;
    color: black;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: lighter;
    box-sizing: border-box;
}

nav ul {
    display: flex;
    justify-content: center;
    text-align: center;
    list-style: none;
    gap: 24px;
    padding-bottom: 12px;
}

nav a:hover{
    background-color: blue;
}
