
body{
    background-size: cover;
    height: fit-content;
    background-color: #ff9b00;
  }
  main{
      display: flex;
      flex-direction: column;
      align-items: center;
  }
  section.page-content{
    height: fit-content;
    overflow: visible;
  }
  .close-out{
    position: absolute;
    right: 10px;
    top: 10px;
    background-color: rgba(50,184,236, .85);
    border: none;
    padding: 10px 15px;
    border-radius: 5px;

  }
  footer{
    z-index: 0;
  }
  .event_calendar .days li{
    width: 5vw;
    height: 5vw;
  }
  .wrapper{
    min-width: 200px;
    max-width: 600px;
    background-color: transparent;
  }
  .calendar-modal {
    /* margin-top: 100px; */
    display: flex;
    justify-content: center;
    width: fit-content;
    height: fit-content;
    max-width: 90vw;
    z-index: 10;
    background-color: white;
    border-radius: 5px;
    position: relative;
    top: 30;
    box-shadow: 10px 10px 10px black; /*helps to separate modal from background footer contents*/
  }
  .calendar-container{
    width: 60%;
    min-width: fit-content;
  }
  .day-container{
    color:black;
    width:300px;
    min-width:100px;
    max-width: 300px;
    padding: 20px;
  }
  .header-container{
      width:calc(90% - 200px);
  }
  div.overlay-parent{
      /* position:relative; */
      width: 200px;
      height: fit-content;
      margin-right: 20px;
      display: flex;
      justify-content: space-between;
  }
  div.overlay-parent img{
      position:absolute;
      top:0;
      left:0;
      height:200px;
      border-radius: 50%;
  }
  img#profile-picture{
      height: 180px;
      width: 180px;
      margin: 10px;
  }
  form.evaluation-form{
      display:flex;
      flex-direction: column;
      padding: 50px;
  }
  label.eval{
      color:black !important;
  }
  section.info{
      padding: 0;
  }
  .user-info{
      display: flex;
      justify-content: flex-start;
      width: 70%;
      height: fit-content;
  }
  button.tab{
      background-color: rgba(50,184,236, .85);
      border: none;
      padding: 15px;
      border-radius: 5px;
  }
  button.tab:hover{
      background-color: rgba(96, 201, 243, 0.85);
  }
  button.tab:active{
      background-color: rgba(8, 162, 223, 0.85);
  }
  p.instructions{
    padding-top: 100px;

  }
  .tabs{
      display: flex;
      width: 70%;
      justify-content: space-around;
      padding: 100px 0;
  }
  .tab:hover{
      text-shadow: 1px 1px 1px black;
  }
  h2{
      color:black;
      max-width: 70%;
  }
  .page{
      position: absolute;
      top: 0;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      width:100%;
      background-color: rgba(0, 0, 0, 0.359);
      height: 100vh;
      /* border-radius: 50px;
      margin-bottom: 200px; */
  }
  .hidden {
      display: none;
  }
  .tab{
      /* background-color: transparent; */
      border: none;

      position:relative;
  }
  .active{
      text-shadow: 0px 0px 5px black;
  }
  #left-mobile-bubble, #right-mobile-bubble{
    width: 250px;
    height: 250px;
    margin-left: -2em;
    position: relative;
  }

  #video-bubble{
    width: 425px;
    height: 425px;
    background-size:cover;
    padding:12px;
    position:relative;
  }

  #left-desktop-bubble, #right-desktop-bubble{
    width: 200px; 
    height: 200px;
    position: absolute;
    border-radius: 50%;
  }

  /* MOBILE and Galaxy Fold*/
  @media only screen and (min-width: 250px) {

    /* Galaxy Fold */
    @media screen and (max-width:280px){
      header{
        display:flex;
        flex-direction:column;
      }

      a[href="mailto:programs@afreebird.org"]{
        font-size:22pt !important;
      }
    }
    .mobile-bubble {
      display: inline;
    }

    .desktop-bubble {
      display: none;
    }

    .section{
      padding-bottom: 100px;
    }

    #left-mobile-bubble, #right-mobile-bubble{
      zoom: 75%;
      position: relative;
      margin:0.2em;
    }
  }

  /* TABLET */
  @media only screen and (min-width: 768px) and (max-width: 1280px){
    .mobile-bubble {
      display: none;
    }

    .section {
      padding: 5%;
      padding-top:150px;
    }

    .desktop-bubble {
      display: block;
    }

    #left-desktop-bubble{
        display:none;
    }
    #right-desktop-bubble{
      left:-3%;
    }

    /* Nest Hub and Nest Hub Max */
    @media only screen and (min-width:1000px) and (max-width: 1280px){
      #right-desktop-bubble{
        left:-15%;
      }

      .section{
        padding-top:50px;
      }
    }
    
  }

  /* LAPTOP and Desktop */
  @media screen and (min-width: 1281px) {
    .mobile-bubble {
      display: none;
    }

    .desktop-bubble {
      display: block;
    }

    #left-desktop-bubble{
      left: -200px;
      bottom: 700px;
    }
    
    #right-desktop-bubble{
      left: 78px;
    }
    
    #video-bubble{
      left:180px;
      bottom:100px;
    }

  }

  /* Override calendar settings */
  .days li.upcoming_event_preview{
    width: 0;
    height: 0;
    grid-column: 1 / span 7; 
    grid-row: 6; 
  }
