/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */


body {
  background-image: url(starring.png);
  color: white;
  font-family: "Times New Roman", Times, Serif;
  font-size: 18px;
  line-height: 100%;
}

#flex {
    display: flex;
    justify-content: center;
}

.header {
    color: orange;
    font-size: 20px;
}

.menu {
    background-color: orange;

    width: 170px;
    height: 475px;

    overflow: hidden;

    border: 2px solid rgb(0, 0, 0);
    box-shadow: 4px 5px 0px 0px rgba(100, 161, 189, 0.5);
    
    margin: 20px 5px 5px 5px;
    
    font-family: "Times New Roman", Times, Serif;
    font-size: 18px;
    line-height: 100%;
}

#menuWrapper {
    /* background-color: rgba(138, 43, 226, 0.4); */
    padding: 10px;
}

#menuWrapper a {
    color: white;
    text-decoration: none;
}

#menu-title {
    color: white;
    background-color: rgb(84, 175, 212);

    margin: 10px 20px 15px 20px;
    border: 1px solid black;
    box-shadow: 3px 3px 0px 0px rgba(31, 97, 123, 0.5);
}

.main {
    background-color: orange;

    width: 350px;
    max-height: 475px;
    border: 2px solid rgb(0, 0, 0);
    padding: 0px;
    box-shadow: 5px 6px 0px 0px rgba(117, 139, 150, 0.5);
    
    margin: 5px;
    overflow: hidden;
}

#main-header {
    margin: 10px 20px 10px;
    border: 2px solid rgb(0, 0, 0);
    box-shadow: 4px 4px 0px 0px rgba(80, 112, 127, 0.5);
    padding: 5px;
    
    background-color: rgba(138, 43, 226, 0.4);
}