.readme {
    margin-top: 50px;
    box-shadow: 0px 0px 15px 5px black;
}

.readme hr {
    width: 200px
}

.wrapcup {
    background-color:rgb(10, 20, 120);
    border-radius: 100%;
    width: 100px;
    height: 100px;
    display: flex;
    margin: 4px;
    cursor: pointer;
  }
  
  .secondwrap {
    background-color:rgb(24, 131, 238);
    border-radius: 40px;
    width: 80px;
    height: 80px;
    display: flex;
    margin: auto;
  }
  
  .wrapcup:hover {
    background-color:rgb(224, 144, 0);
  }
  
  .secondwrap img {
    margin: auto;
  }
  
  .cuprow {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
  }

  .cupinfo {
      position: relative;
      display: none;
  }

  .cupinfo.open{
    display: block;
  }

  .cuptitle {
      font-size: 30px;
      margin-bottom: 20px;
  }

  .cupimage {
    position:absolute;
    right:50px;
    z-index:-1;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
  }

  .coursenames {
      line-height: 1.5em;
      margin-top: 30px;
      margin-left: 10px;
      margin-bottom: 10px;
  }

/* Style the buttons that are used to open and close the accordion panel */
.accordion {
    font-family: "Lexend Deca", sans-serif;
    border: 1px black;
    border-style: solid;
    color: white;
    background-color: rgba(0, 18, 146, 0.85);
    cursor: pointer;
    padding: 16px;
    width: 100%;
    text-align: left;
    outline: none;
    transition: 0.4s;
}
/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active,
.accordion:hover {
    background-color: rgba(0, 171, 255, 0.7);
}

/* Style the accordion panel. Note: hidden by default */
.panel {
    padding: 0px 18px;
    background-image: linear-gradient(rgba(0, 18, 146, 0.85), rgba(0, 18, 146, 0));
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.accordion:after {
    content: '\02795';
    /* Unicode character for "plus" sign (+) */
    font-size: 13px;
    color: #777;
    float: right;
    margin-left: 5px;
}

.active:after {
    content: "\2796";
    /* Unicode character for "minus" sign (-) */
}

.icon {
    padding: 10px
}
