/* Structure */
body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: pink;
    background: repeating-linear-gradient(
    to bottom,
    red 0px, /* First color, starts at 0px */
    pink 500px, /* First color, ends at 20px (stripe height) */
    pink 500px, /* Second color, starts at 20px */
    red 1000px  /* Second color, ends at 40px (total pattern height) */
  );
}
#map {
    width:90%;
    height:400px;
    margin: 5px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}
#contact-form {
    background-color: lightgrey;
    margin: 5px;
    padding: 10px;
    width: 70%;
    height: 300px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    
}
#main-content img {
    width: 300px;
    height:auto;
    padding: 20px;
    display: flex;
    margin-left: auto;
    margin-right: auto;
}
#main-header {
    background: red;
    padding: 5px;
    border-radius: 5px;
    text-align: center;
}
#main-header h1 {
    color: white;
}

/* Main Navigation */
#main-nav li {
    list-style-type: none;
    display: block;
    text-align: center;
    background-color: pink;
    border-radius: 10px;
    padding: 5px;
    margin: 10px;
}
#main-nav a {
    color: white;
    text-decoration: none;
}
.hidden {
    display: none;
}
#arrow {
    width: 0;
    height: 0;
    border: solid 10px;
    border-color: black transparent transparent transparent;
}
@media (min-width: 1100px) {
    .flex-container, #main-nav ul {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }
    #arrow {
        display: none;
    }
    .flex-container2 {
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
    }
    
}