@import url('https://fonts.googleapis.com/css2?family=Sedgwick+Ave+Display&display=swap');
* {
    margin:0;
    padding:0;
    text-align: center;
}
body {
  background: rgb(127,34,195);
  background: linear-gradient(0deg, rgb(127, 34, 195) 0%, rgba(255,151,210,1) 100%);
  background-attachment: fixed;
}
a {
    text-decoration: none;
    color: #222;
}
a:hover {
    color: #e39;
}
img {
    max-width: 100%;
    border-radius: 10px;
}
li {
    list-style: none;
}
h1 {
    font-size: 4em;
    font-family: 'Sedgwick Ave Display', cursive;
    padding: 30px 0 20px;
}
h2 {
    font-size: 2.5em;
}
h3 {
    font-size: 2em;
}
p {
  font-size: 2em;
}
.accordion {
  background: rgb(228,190,255);
  background: linear-gradient(90deg, rgba(228,190,255,1) 0%, rgba(255,213,237,1) 100%);
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
  }
    .active, .accordion:hover {
    background-color: #ccc;
  }
  .panel {
    padding: 0 18px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
  }
  #vidcon {
    transition: all 1.2s;
  }
 .flex-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 900px;
    margin: auto;
    text-align: center;
    justify-content: center;
  }
  .flex-item {
    flex: 40%;
    background-color: white;
    border: 2px solid white;
    border-radius: 10px;
    padding: 15px;
    margin: 15px;
    box-shadow: 0 0 5px rgba(0,0,0,0.5);
  }
  .flex-item li {
    display: inline-block;
    padding: 10px 20px;
    background-color: white;
    border: 2px solid black;
    border-radius: 15px;
    font-size: 1.5em;
    font-weight: bold;
  }
 .flex-item li:hover {
    background-color: #ddd;
  } 
  .flex-item li:hover a {
    color: #e39;
  }
  .flex-item p {
    font-size: 2em;
  }
  @media (max-width: 800px) {
    .flex-item {
      flex: 100%;
    }
  }
  .flex-item-small {
    background-color: white;
    flex: 30%;
    border: 2px solid #7f22c3;
    border-radius: 10px;
    padding: 5px;
    margin: 5px;
    box-shadow: 2px 2px rgba(0,0,0,0.5);   
  }
  .link-item {
    background-color: white;
    border-radius: 20px;
    padding: 20px;
    margin: 5px;
    box-shadow: 0 5px #00000080;
    position: relative;
    top:0;
  }
  .link-item:hover{
    transition: all 0.5s;
    box-shadow: 0 15px black;
    position: relative;
    top:-10px;
  }
  .flex-full {
    flex: 100%;
    background-color: white;
    border: 2px solid white;
    border-radius: 10px;
    padding: 15px;
    margin: 15px;
    box-shadow: 0 0 5px rgba(0,0,0,0.5);
  }