h1 {
  color: #3A3441
;
  font-size: 40px;
  letter-spacing: 3px;
  margin-left: 20px;
}

h2 {
  color: black;
  letter-spacing: 1px;
  word-break: keep-all;
}

@media (max-width : 760px) {
  h1 {
    text-align: center;
  }
}

body {
  background-color: #A981EB;
}

main {
  color: black;
  font-family: "Inclusive Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  display: flex;
  justify-content: flex-start;
}

@media (max-width : 760px) {
  main {
    flex-direction: column;
    text-align: center;
  }
}

menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 150px;
}

menu a {
  text-decoration: none;   
  font-size: large;
  letter-spacing: 3px;
  color: #fbeaff;
}

menu a:hover {
  color: #00c9a7;
  font-weight: 600;
}

menu mark {
  text-decoration: underline;
  font-size: large;
  letter-spacing: 3px;
  font-weight: 500;
}

@media (max-width : 760px) {
  menu {
    width: 100%;
    display: inline-block;
    padding-left: 0px;
  }
}

menu li {
  list-style-type: none;
  margin-bottom: 15px;
}

.masthead img {
width: 250px; 
height: 300px;
  margin-bottom: 30px;
}

.masthead {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 700px;
  margin: 20px;
}

@media (max-width : 760px) {
  .masthead {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
}

.container {
    background-color: #3f0a57;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(2, 4, 2, 0.1);
    text-align: center;
    width: fit-content;
    max-width:300px;
    max-height: fit-content;
    border: 5px solid black;
    box-sizing: border-box
}

#quote-container {
    margin-bottom: 30px;
}

#quote-text {
    font-size: 1.5em;
    line-height: 1.5;
    margin-bottom: 15px;
    color: white;
}

#quote-author {
    font-style: italic;
    color: #777;
    text-align: right;
}

#new-quote-btn {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#new-quote-btn:hover {
    background-color: #0056b3;
}

