body {
    color: #fff;
    font-family: Arial;
}

a {
    color: white;
}

a:hover {
    color: #D98DFA; /*lilac*/
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin: 50px;
    gap: 50px;
    padding: 20px;
}

.header {

    & > h1 {
    font-size: 15vw;
    margin: 0px;
    color: #fff;
    font-weight: normal;
    }
}

.contact {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 250px;
  font-size: 12px;
  padding: 5px;
  & > .material-symbols-outlined {
      font-variation-settings:
      'FILL' 100,
      'wght' 400,
      'GRAD' 0,
      'opsz' 24;
      font-size: 11px;
    }
}

/* <----------- ANNOUNCEMENTS BOX ----------->*/
.announcements {
    border: 1px solid white;
    width: 65vw;
    box-shadow: 7px 7px white;
}

.announcements-header {
    border-bottom: 1px solid white;
    padding: 0px 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    font-size: 16px;
    & > .material-symbols-outlined {
      font-variation-settings:
      'FILL' 100,
      'wght' 600,
      'GRAD' 0,
      'opsz' 24;
      font-size: 24px;
    }
}

.announcements-content {
    padding: 5px 10px;
}

.damn-gifs {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    & > img {
        height: 200px;
    }
}

/* <----------- ARCHIVED BOX ----------->*/
.archived-content {
    border: 1px solid white;
    width: 65vw;
}

.archived-content-header {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    background-color: white;
    color: black;
    padding: 0px 10px;
}

.archived-content-title {
    padding-right: 25px;
    & > p {
        margin-top: 20px;
        margin-bottom: 9px;
    }
}

.archived-content-button button { /* Style the buttons inside the tab */
    background-color: inherit;
    float: left;
    outline: none;
    cursor: pointer;
    padding: 10px 50px;
    transition: 0.3s;
    border: 1px solid #27262B;
}

.archived-content-button button:hover { /* Change background color of buttons on hover */
    background-color: #D98DFA;
 }

.archived-content-button button.active { /* Create an active/current tablink class */
    background-color: #27262B;
    color: white;
    }

.tab-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.talk-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.speakers, .showcase {
    display: flex;
    flex-direction: row;
    gap: 30px;
    padding: 30px;
}

.showcase-container {
    display: grid;
    grid-template-columns: auto auto auto auto;
    gap: 10px;
}

.showcase-content {
    aspect-ratio: 1 / 1; 
    position: relative;
    text-align: center;
    color: white;
    & > img {
        object-fit: cover;
        width: 100%;
        height: 100%;
        
    }

}

.hiddentext {
  position: absolute;
  bottom: 10%;
  display: flex;
  padding: 2px 10px;
  font-size: 12px;
  text-align: left;
  background-color: white;
  color: black;
  /*remove text selection*/
      -webkit-user-select: none; /* Safari */
      -ms-user-select: none; /* IE 10 and IE 11 */
      user-select: none; /* Standard syntax */

      & > .material-symbols-outlined {
        font-size: 16px;
        }
}

.showcase-content:hover + .hiddentext {
  background-color: #D98DFA;
  color: black;
  text-decoration: underline;
}


.sidebar-header {
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  & > .material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0;
    font-size: 80px;
    position: sticky;
    top: 0;
    }
}

.talk-content {
    border-bottom: 1px solid white;
    padding-top: 30px;
    padding-bottom: 10px;
    & > a {
        text-decoration: none;
    }
}

.talk-content p {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
}

#firsttalk {
    padding-top: 0px;
}

#marketing {
    background-color: #148BFF;
}
#community {
    background-color: #00CAB7;
}
#design {
    background-color: #E0B5FF;
}
#uiux {
    background-color: #EB64FF;
}
#programming {
    background-color: #FF5A2A;
}
#production {
    background-color: #6DFF7D;
}
#audio {
    background-color: #FFBF00;
}
#art {
    background-color: #FF3693;
}
#vfx {
    background-color: #FF52E6;
}

h2 {
    font-size: 30px;
    margin-top: 0px;
}

.author {
    padding-right: 5px;
    font-weight: bold;
}

.company {
    padding-right: 5px;
    color: #9F9F9F;
}

.category {
    padding: 2px 5px;
    color: #27262B;
    font-size: 12px;
    vertical-align: baseline;
}


/* <----------- RESPONSIVE LAYOUT ----------->*/
    /* Makes the menu and the content (inside the section) sit on top of each other instead of next to each other */
    @media only screen and (max-width: 600px) {
      .container{
  	    margin: 10px;
        padding: 5px;
      }

      .announcements {
          width: 80vw;
      }

      .archived-content {
          width: 80vw;
      }

      .archived-content-button button {
          width: 100%;
      }

      .archived-content-header {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
      }
      
       h2 {
        font-size: 25px;
       }

      .speakers, .showcase {
         display: flex;
         flex-direction: column;
         gap: 10px;
         padding: 10px;
      }

      .sidebar-header {
        padding: 5px;
      }

    .showcase-container {
        display: grid;
        grid-template-columns: auto;
        gap: 10px;
    }

    .damn-gifs {
            & > img {
        height: 150px;
        }
    }

    .contact {
        position: relative;
    }

    .sidebar-header {
      & > .material-symbols-outlined {
        position: relative;
        }
    }

    } /*@media bracket */

/* <----------- BACKGROUND GRID ----------->*/
    .graph-paper {
      /* Set the size of each square (e.g., 20px) */
      --grid-size: 30px;
  
      /* Set the line color and thickness */
      --line-color: #343434;
      --line-width: 1px;

      background-color: #27262B;
      background-image: 
        /* Vertical lines */
        linear-gradient(to right, var(--line-color) var(--line-width), transparent var(--line-width)), 
        
        /* Horizontal lines */
        linear-gradient(to bottom, var(--line-color) var(--line-width), transparent var(--line-width));
  
      /* Ensure the background covers the entire element */
      background-size: var(--grid-size) var(--grid-size);
  