@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300&display=swap');

body {
  padding: 0;
  margin: 0;
  background-color: #cfeaf7;
}

.background {
  padding: 2em;
  background: url(https://images.unsplash.com/photo-1568145675395-66a2eda0c6d7?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=870&q=80) center center/cover;
  width: auto;
  height: auto;
}

footer {
  text-align: center;
  background-color: #1c96ca;
  color: white;
}

footer p {
  margin: 0;
}

main {
  margin: 20px;
  font-size: 1.5rem;
  color: #15749d;
}

h1 {
  position: relative;
  color: #fff;
  font: 900 60px 'Dancing Script';
  text-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.2em;
  text-align: center;
}

h2 {
  color: #1c96ca;
  font: 900 60px 'Dancing Script';
  text-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

h3 {
  font-family: Cambria;
  font-size: 2rem;
  color: #1c96ca;
}

h4 {
  color: #15749d;
  font-family: 'Lato';
}

#music,
#punchlinebutton,
.apibutton {
  font-family: 'Lato', serif;
  font-size: 1em;
  background-color: #cfeaf7;
  color: #15749d;
  border-color: lightblue;
  border-radius: 8px;
}

/* ABOUT US SPECIFIC */

#aboutus {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#team {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.bio {
  background-color: aliceblue;
  border: 2px solid #1c96ca;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 500px;
  width: 400px;
  padding: 15px;
  text-align: center;
}

div p {
  padding: 20px;
}

/* STRESS PAGE SPECIFIC */

body,
html {
  margin: 0;
  padding: 0;
}

.stress-page-section {
  margin: 20px;
  padding: 10px;
}

.interactive {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.desctitle {
  color: white;
}

.stresspage {
  display: grid;
  grid-template: 1500 px repeat(2, 1fr) / repeat(3, 1fr);
}

#workresources {
  grid-row: 3/span 1;
  grid-column: 2/span 1;
  border: 2px solid powderblue;
  background-color: lightskyblue;
  border-radius: 8px;
  color: white;
}

#todolist {
  grid-row: 3/span 1;
  grid-column: 3/span 1;
  border: 2px solid midnightblue;
  background-color: navy;
  border-radius: 8px;
  color: white;
  display: flex;
  justify-content: center;
}

#causes {
  grid-row: 2/span 3;
  grid-column: 1/span 1;
  display: flex;
  flex-direction: column;
  border: 2px solid royalblue;
  background-color: cornflowerblue;
  border-radius: 8px;
  color: white;
}

#tips {
  grid-row: 2/span 1;
  grid-column: 2/span 2;
  border: 2px solid midnightblue;
  background-color: #002699;
  border-radius: 8px;
  color: white;
}

#resources {
  grid-row: 3/span 1;
  grid-column: 2/span 2;
  border: 2px solid powderblue;
  background-color: lightskyblue;
  border-radius: 8px;
  color: white;
}

.desc {
  grid-row: 1/span 1;
  grid-column: 1/span 2;
}

.interactive {
  grid-row: 1/span 1;
  grid-column: 3/span 1;
}

ul {
  list-style-type: disc;
  padding: 20px;
  margin: 2em;
  display: flex;
  flex-direction: column;
}

li {
  float: left;
}

li a {
  width: 60px;
  color: white;
}

/* MENU BUTTONS */

a:link {
  text-decoration: none;
}

a:visited {
  color: white;
  text-decoration: none;
}

a:hover {
  color: lightblue;
  text-decoration: none;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown .dropdown-content {
  display: none;
  position: absolute;
  background-color: aliceblue;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  font-family: Raleway;
  text-align: center;

}

.dropdown .dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown .dropdown-content a:hover {
  background-color: aliceblue;
}

.dropdown:hover .dropdown-content {
  display: block;
}

menu {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 10px;
}

menu button {
  background-color: #15749d;
  color: white;
  padding: 10px 20px;
  /* Set the padding */
  border: none;
  /* Remove borders */
  cursor: pointer;
  /* Add a pointer cursor */
  border-radius: 2px;
  /* Add rounded corners */
  margin-bottom: 5px;
  /* Add some margin for spacing */
  font-family: Raleway;
  font-size: 14px;
  width: 140px;
  height: 40px;
}

.dropdown-menu {
  display: none;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown .dropdown-content a:hover {
  background-color: #f1f1f1;
}

#dog,
#cat {
  display: none;
  width: 300px;
  height: 300px;
  object-fit: cover;
}

#punchline {
  display: none;
}

/* About Us Specific */
#aboutusblurb {
  text-align: center;
}

/* To-Do List Styling for Work Stress Page (og code from other project) */
/* .to-do-title {

  font-size: 24px;
  margin-left: 25px;
  padding-top: 3px;
}

.to-do-input {
  margin-left: 0px;
  border: none;
  border-radius: 0;
  width: 70%;
  padding: 10px;
  float: left;
  font-size: 16px;
}

.addBtn {
  position: relative;
  top: 3px;
  padding: 3.5px 40px;
  border: none;
  cursor: pointer;
  background-color: #AECBEB;
  color: white;
}

.addBtn:hover {
  background-color: #9cc1e8;
  border: none;
}

.to-do-list {
  background-color: #AECBEB;
  width: 500px;
  height: 318px;
  position: relative;
  left: 25px;
  top: 25px;
  overflow-x: auto;
  overflow-y: scroll;
}

* {
  box-sizing: border-box;
}

.todo {
  margin: 0;
  padding: 0;
}

.todo .todoitem {
  cursor: pointer;
  position: relative;
  padding: 12px 8px 12px 40px;
  background: #bcdafb;
  font-size: 18px;
  transition: 0.2s;

  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.todoitem:nth-child(odd) {
  background: #a9d0f4;
}

.todo .todoitem:hover {
  background: #8fa9c1;
}

.close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 12px 16px 12px 16px;
}

.close:hover {
  background-color: #f44336;
  color: white;
} */

h2.special-heading {
  color: #f0f0f4;
}
