@font-face {
    font-family: Gordita;
    src: url(Gordita-Black.otf);
}

@font-face {
    font-family: Gordita Reg;
    src: url(Gordita-Bold.otf);
}

@font-face {
    font-family: Gordita Thin;
    src: url(Gordita-Medium.otf);
}

@font-face {
    font-family: Gordita Thinner;
    src: url(Gordita-Regular.otf);
}

:root
{
    background-color: #1a1a1a;
    margin: 0 0 0 0;
}

::-webkit-scrollbar
{
    display: none;
}

#title
{
    font-family: Gordita;
    color: transparent;
    width: 70%;
    height: 20%;
    display: flex;
    justify-content: center;
    -webkit-text-stroke-color: #fafafa;
    -webkit-text-stroke-width: 3px;
    filter: drop-shadow(0px 15px 3px #0f0f0f);
    font-size: 84px;
    font-weight: 900;
    text-align: center;
    transition: cubic-bezier(0.075, 0.82, 0.165, 1) .35s;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
}

#title:hover
{
    filter: drop-shadow(0px 30px 0px #0f0f0f);
    font-size: 92px;
}

#bigClockLabel
{
    font-family: Gordita Reg;
    text-align: center;
    color: #fafafa;
    text-align: center;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 14rem;
    font-weight: bolder;
}
#bigClockLabel span 
{
    font-size: 5rem;
    position: relative;
    top: 60px;
}

#time
{
    font-family: Gordita Reg;
    text-align: center;
    color: #fafafa;
    font-size: 48px;
    font-weight: bolder;
}


#timeElapsed
{
    font-family: Gordita Reg;
    text-align: center;
    display: block;
    margin-left: auto;
    color: #fafafa;
    margin-right: auto;
    font-weight: 700;
    font-size: 48px;
    width: 70%;
}

#tenminutes
{
    color: aquamarine;
    font-family: Gordita Reg;
    filter: drop-shadow(0px 0px 5px #0f0f0f);
    display: flex;
    font-size: 36px;
    width: 50%;
    text-align: center;
    justify-content: center;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    transition: ease-in-out 1s;

}

#periodEnd
{
    color: white;
    font-family: Gordita Reg;
    filter: drop-shadow(0px 0px 5px #0f0f0f);
    display: flex;
    font-size: 36px;
    width: 50%;
    text-align: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    transition: ease-in-out 1s;
}

#dayEnd
{
    color: white;
    font-family: Gordita Reg;
    filter: drop-shadow(0px 0px 5px #0f0f0f);
    display: flex;
    font-size: 36px;
    width: 70%;
    text-align: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    transition: ease-in-out 1s;
}

#schedule-text
{
    font-family: Gordita Reg;
    color: #fafafa;
    cursor: pointer;
}

.sched-btn
{
    font-family: Gordita Thin;
    font-size: 1rem;
    color: #fafafa;
    background-color: #7b2cbf;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    margin: 5px;
}

.sched-btn:hover
{
    background-color: #65259e;
}

#credits
{
    display: flex;
    font-family: Gordita Reg;
    color: #fafafa;
    text-align: center;
    font-size: 2rem;
    width: fit-content;
    margin: auto;
    text-decoration: none;
}

#back
{
    display: flex;
    font-family: Gordita Reg;
    color: #fafafa;
    text-align: center;
    font-size: 1rem;
    text-decoration: none;
    width: fit-content;
}

#wifipass
{
    background-color: #161616;
    font-family: Gordita Thin;
    font-weight: 500;
    color: #fafafa;
    text-align: center;
    font-size: 1.5rem;
    text-decoration: none;
    width: 50%;
    filter: drop-shadow(10px 3px 3px #151515);
    margin: auto;
    margin-top: 10%;
}

#wifipass tr
{
    padding: 0;
}

#headerrow
{
    background-color: #292929;
}


#wifipass, tr, th, td
{
    border: 1px solid #1d1d1d;
    border-collapse: collapse;
}

.calendar {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #090909;
    padding: 25px;
    filter: drop-shadow(5px 5px 5px);
}

.header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
    gap: 1rem;
    font-family: Gordita Reg;
    color: #fff;
  }

  .header button {
    background: #131313;
    color: white;
    font-family: Gordita Thin;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
  }

  .header button:hover {
    background: #242424;
  }

  .month-label {
    font-size: 1.3rem;
    font-weight: bold;
    min-width: 200px;
    text-align: center;
  }

  .day {
    background: #0f0f0f;
    padding: 8px;
    border-radius: 8px;
    min-height: 100px;
    font-family: Gordita Thin;
    color: #fafafa;
    display: flex;
    flex-direction: column;
  }
  .day-number {
    font-weight: bold;
    margin-bottom: 5px;
  }
  .event {
    background: #007bff;
    color: white;
    font-family: Gordita Thinner;
    padding: 2px 4px;
    border-radius: 4px;
    font-size: 0.8rem;
    margin-top: 2px;
    cursor: pointer;
    line-height: 1.2;
  }
  .event:hover {
    background: #0056b3;
  }

  .weekday-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    max-width: 1200px;
    font-family: Gordita;
    margin: 0 auto;
    text-align: center;
    font-weight: bold;
    margin-bottom: 5px;
    text-transform: uppercase;
    font-size: 0.85rem;
    color: #fff;
  }

  #dayrotation {
    font-family: Gordita Reg;
    text-align: center;
    color: #fafafa;
    font-size: 48px;
    font-weight: bolder;
  }

  #eventtime {
    font-family: Gordita Reg;
    color: #fafafa;
    font-size: 2rem;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1em;
  }

  @media (max-width: 600px) {
    #title{
        font-size: 2.5rem;
        width: 90%;
    }
    #time, #timeElapsed, #periodEnd, #dayEnd, #tenminutes, #credits
    {
        font-size: 1.5rem;
        width: 90%;
        text-align: center;
        align-items: center;
        flex-direction: column;
        justify-content: center;
        margin: auto;
        padding: 10px;
    }
    .calendar
    {
        display: grid;
        grid-template-columns: repeat(7, 1fr);
        gap: 3px;
        width: 90%;
        margin: 0 auto;
        background-color: #090909;
        padding: 5px;
        filter: drop-shadow(5px 5px 5px);
    }

    .day {
        background: #0f0f0f;
        border-radius: 8px;
        min-height: 50px;
        font-family: Gordita Thin;
        color: #fafafa;
        display: flex;
        flex-direction: column;
      }
      .day-number {
        font-weight: bold;
        margin-bottom: 5px;
      }
      .event {
        background: #007bff;
        color: white;
        font-family: Gordita Thinner;
        padding: 2px 4px;
        border-radius: 4px;
        font-size: 0.8rem;
        margin-top: 2px;
        cursor: pointer;
        line-height: 1.2;
      }
      .event:hover {
        background: #0056b3;
      }
    
      .weekday-header {
        display: grid;
        grid-template-columns: repeat(7, 1fr);
        max-width: 1200px;
        font-family: Gordita;
        margin: 0 auto;
        text-align: center;
        font-weight: bold;
        margin-bottom: 5px;
        text-transform: uppercase;
        font-size: 0.85rem;
        color: #fff;
      }

  }

