body{
  margin: 0;
  padding: 0;
  border: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100vw;
  background-color: #41EAD4;
  overflow-x: hidden;
}

#layout{
  height: 80vh;
  width: 70vw;
  background-color: #FCF4E6FF;
  border-radius: 15px;
  border: 4px solid black;
  box-shadow: 10px 10px black;
}
#decoration-top{
  background-color: #FBFF12;
  height: 150px;
  width: 400px;
  left: 12vw;
  top: 2vw;
  position: absolute;
  z-index: -1;
  border-radius: 15px;
  border: 4px solid black;
}
#decoration-bottom{
  background-color: #FF206E;
  height: 150px;
  width: 400px;
  right: 17vw;
  bottom: 1.5vw;
  position: absolute;
  z-index: -1;
  border-radius: 15px;
  border: 4px solid black;
}
h1{
  font-family: 'Rubik', sans-serif;
  color: black;
  font-weight: 700;
  font-size: 33px;
  border-bottom: 4px solid black;
  margin: 0px;
  padding: 1vw 1vw 1vw 2vw;
}


#content{
  display: flex;
  align-items: center;
  justify-content: space-between;

  height: 90%;
  width: 100%;
}
#scrollable{
  background-color: #FCF4E6FF;
  position: relative;
  margin-left: 3%;
  top: -1%;
  height: 85%;
  width: 67%;
  overflow-y: scroll;
  scroll-behavior: smooth;
  border-radius: 15px;
  border: 4px solid black;
}
#right{
  margin-right: 3%;
  height: 85%;
  width: 23.5%;
  position: relative;

  display: flex;
  justify-content: center;
}
#menu{
  width: 100%;
  height: 60%;

  display: grid;
  grid-template-rows: 1fr 1fr 1fr 1fr;
}
.menuContentItem, #tip-button{
  font-family: 'Inter', sans-serif;
  font-size: 25px;
  font-weight: 400;
  text-align: center;
  border-radius: 15px;
  border: 4px solid black;
  text-align: center;
  width: 100%;
}
.menuContentItem:hover, #tip-button:hover{
  font-weight: 700;
  border: 4px solid black;
}

/* distraction button popups */

#distraction-button{
  position: absolute;
  font-weight: 800;
  height: 43%;
  width: 75%;
  bottom: 2%;
  right: 2%;
  padding: 20px;
  border-radius: 15px;
  border: 4px solid black;

  font-size: 25px;
  font-family: 'Inter', sans-serif;
  background-color: #FCF4E6FF;
  box-shadow: 10px 10px black;
}
#distraction-button:hover{
  background-color: black;
  color: white;
  border: 4px dotted white;
}
.distractionPopup{
  height: 230px;
  width: 300px;
  position: absolute;
  background-color: #FCF4E6FF;

  border-radius: 15px;
  border: 4px solid black;
  box-shadow: 10px 10px black;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.textDistraction{
  font-family: 'Inter', sans-serif;
  font-size: 1.6vw;
  text-align: center;
  font-weight: 700;
  width: 100%;
  margin: .5vw 0 .5vw -2vw;
}
.popupImg{
  width: 18vw;
  height: 8.5vw;
}



/* scrollable menu content */
h2{
  font-family: 'Rubik', sans-serif;
  font-weight: 800;
  font-size: 50px;
  text-align: center;
  margin: 0;
  padding-top: 60px;
}
p{
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  margin: 5% 10% 5% 10%;
  word-spacing: 1px;

  text-indent: 40px;
}

/* image design */
.imageDesign{
  font-family: 'Inter', sans-serif;
  font-size: 1.2vw;
  text-align: center;
  width: 17vw;
  height: 13vw;
  padding: 0vw .5vw 0vw .5vw;
  margin: 0;

  border-radius: 15px;
  border: 4px solid black;
  box-shadow: 10px 10px black;
}
img{
  width: 16vw;
  height: 8.5vw;
  border: 4px solid black;
  object-fit: cover;
}
/* top and bottom design of image (camera and home button) */
h3{
  margin: 0;
  padding: 0;
}
#wellness{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
#tip-button{
  background-color: #FBFF12;
  width: 50%;
  height: 6vw;
}
#tip-output{
  font-family: 'Inter', sans-serif;
  font-size: 22px;
}

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

  font-family: 'Inter', sans-serif;
  font-size: 22px;
  margin: 5% 15% 5% 15%;
  word-spacing: 1px;
  width: 60%;
}

@media only screen and (max-width: 1300px){
  /* distraction button popups */

  #distraction-button{
    height: 43%;
    width: 75%;
    bottom: 2%;
    right: 2%;
    padding: 10px;

    font-size: 20px;
  }
  .menuContentItem, #tip-button{
    font-size: 20px;
  }
}

@media only screen and (max-width: 1000px){
  body{
    background-color: black;
    overflow-x: hidden;
  }
  /* distraction button popups */

  #distraction-button{
    height: 43%;
    width: 75%;
    bottom: 2%;
    right: 2%;
    padding: 10px;

    font-size: 15px;
  }
  .menuContentItem, #tip-button{
    font-size: 15px;
    width: 400px;
    margin-right: -50px;
  }
}
