@import url('https://fonts.googleapis.com/css2?family=DM+Mono&display=swap');

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

body {
  background: #FFF5F5;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.AI {
  margin-top: 5vh;    
}

.normal {
  margin-top: 25vh;    
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-left: 25vw;
  margin-right: 25vw;
}

#cassie {
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
  font-size: 60px;
  text-decoration: none;
  color: #000000;
  margin-bottom: 20px;
}

.pagetop {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 10px;
    margin-bottom: 2vh;
}

div {
  font-family: 'DM Mono', monospace;
  text-align: justify;
}

.about {
  margin-left: 25vw;
  margin-right: 25vw;
}

#sessions {
  margin-left: 5vw;
  margin-right: 5vw;
}

.content {
  margin-left: 25vw;
  margin-right:25vw;
}

.sectionhead {
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.offer-heading {
  font-weight: bold;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.accordion {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.accordion li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.accordion-button {
  padding: 10px 20px;
  width: 500px;
  color: white;
  background-color: #9F9F9F;
  font-size: 16px;
  border: none;
  margin-bottom: 5px;
  cursor: pointer;
}

.accordion-button:hover {
  background-color: #3498db;
}

.accordion ul {
  list-style-type: disc !important;
  padding-left: -40px;
}

p a {
  color: #00AFAF;
  text-decoration: none;
}

.nav {
    position: fixed;
    z-index: 100;
}

.menu {
  font-size: 20px;
  display: flex;
  justify-content: space-around;
  margin-bottom: 20px;
}

.menu a {
  margin: 0 20px;
  color: #000000;
  text-decoration: underline;
}

.menu a:hover {
  color: #00AFAF;
}

.photo-container {
  text-align: center;
  max-width: 300px;
  height: auto;
  margin-bottom: 20px;
}

.photo-container img {
  max-width: 300px;
  height: auto;
  margin-bottom: 10px;
}

.content-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.buttons-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.press {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  width: 200px;
  color: white;
  font-size: 16px;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

#download-button {
  background-color: #9F9F9F;
}

#pay-button{
  background-color: #3498db;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.baluu-button {
    background-color: #3498db;
    width: 500px;
    border:none;
    border-radius: 0px;
    color: #FFFFFF;
    cursor: pointer;
    font-size: 16px;
    padding: 0.5em 1em;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 7vh;
}

.close-button {
  display: none;
  position: absolute;
  right: 25px;
  top: 1px;
  font-size: 50px;
  cursor: pointer;
}

@media screen and (max-width: 833px) {
  .about, .container {
  margin-left: 6vw;
  margin-right: 6vw;
  }
  
  .content {
    margin-left: 6vw;
    margin-right:6vw;
  }
  
  #cassie {
    font-size: 35px;
    white-space: nowrap;
    margin-bottom: 0px;
  }
  
  .about {
    margin-top: 0;
    padding-top: 10px;
  }
  
  .pagetop {
    flex-direction: row;
    margin-left: 6vw;
    margin-right:6vw;
    margin-bottom: 0;
    padding-top: 10px;
  }
  
    p {
    font-size: 15px;
    text-align-last: left;
  }
  
    .photo-container {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}
  
  .photo-container img {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.accordion-button, .baluu-button {
    width: 100%;
}

.menu {
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    width: 100%;
    background-color: #FFF5F5;
    flex-direction: column;
    z-index: 101;

  }
  .menu a {
    display: block;
    padding: 15px;
    text-decoration: none;
    border-bottom: 1px solid #c4c4c4;
  }
  .menu-toggle {
    display: block;
  }
  
  .close-button {
    display: block;
  }
  
}