@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');

body {
    font-family: 'Roboto', sans-serif;
    font-weight: 300 !important;
    margin: 0px;
    overflow-x: hidden;
    width: 100%;
}

body h1 {
    font-weight: 300;
    margin: 20px 30px;
    display:inline-block;
}

#rhythmbuttonsheader {
    font-weight: 300;
    margin-left: 5%;
    display:inline-block;
}

#main-header {
    border-bottom: 2px solid #000;
}

#top-stories {
    width: 500px;
    float: left;
    margin-top: 20px;
    margin-left: 5px;
}

#ExampleImage {
    height: 50%;
    width: 50%;
}

.rhythmbuttons {
margin-left: 10%;

}

.rhythmbuttons button {
        background-color: white; /* Green */
        border: 0.5px solid gray;
        box-shadow: 0 3px 3px 0 rgba(0,0,0,0.2), 0 3px 3px 0 rgba(0,0,0,0.19);
        color: black;
        padding: 15px 25px;
        text-align: center;
        text-decoration:bold;
        display: inline-block;
        font-size: 16px;
        border-radius: 12px;
        margin: 5px;
}

#info-button {
    height: 30px;
    width: 30px;
    background-color: transparent;
    border: none;
    color: black;
}
#close-button {
    height: 100px;
    width: 100px;
    font-size: 50px;
    background-color: transparent;
    border: none;
    color: white;
}

.rhythmbuttons button:hover {
    background-color: gray; /* Green */
    color: white;
  }

.column {
    float: right;
    padding: 8px;
    margin: 10px;
    box-shadow: 2px 2px 2px lightgray;
    max-width: 100%;
    height: auto;
  }

  /* Clear floats after image containers */
.row::after {
    content: "";
    clear: both;
    display: table;
  }

.row {
    display:flex;
}
#boo {
    margin-left: 2%;
}

.my-input, .my-text-area {
    display: block;
    width: 30%;
    margin: 10px;
    padding: 10px 20px;
    border: 1px solid #aaa;
    resize: none;
}

 /* The Overlay (background) */
 .overlay {
    /* Height & width depends on how you want to reveal the overlay (see JS below) */   
    height: 100%;
    width: 0;
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    background-color: rgb(0,0,0); /* Black fallback color */
    background-color: rgba(0,0,0, 0.65); /* Black w/opacity */
    overflow-x: hidden; /* Disable horizontal scroll */
    transition: 0.5s; /* 0.5 second transition effect to slide in or slide down the overlay (height or width, depending on reveal) */
  }
  
  /* Position the content inside the overlay */
  .overlay-content {
    position: relative;
    top: 10%; /* 25% from the top */
    width: 100%; /* 100% width */
    text-align: center; /* Centered text/links */
    margin-top: 30px; /* 30px top margin to avoid conflict with the close button on smaller screens */
  }
  
  /* The navigation links inside the overlay */
  .overlay h1 {
    padding: 8px;
    text-decoration: none;
    font-size: 36px;
    color: white;
    display: block; /* Display block instead of inline */
    transition: 0.3s; /* Transition effects on hover (color) */
  }
  
  /* When you mouse over the navigation links, change their color */
  .overlay a:hover, .overlay a:focus {
    color: #f1f1f1;
  }
  
  /* Position the close button (top right corner) */
  .overlay .closebtn {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 60px;
  }
  
  /* When the height of the screen is less than 450 pixels, change the font-size of the links and position the close button again, so they don't overlap */
  @media screen and (max-height: 450px) {
    .overlay a {font-size: 20px}
    .overlay .closebtn {
      font-size: 40px;
      top: 15px;
      right: 35px;
    }
  } 


  @keyframes bang {
    from {
      transform: translate3d(0,0,0);
      opacity: 1;
    }
  }
  .hoverme {
    text-align: center;
    cursor: pointer;
    position: relative;
    i {
      position: absolute;
      display: block;
      left: 50%;
      top: 0;
      width: 3px;
      height: 8px;
      background: red;
      opacity: 0;
    }
  
  }

  .shake {
    animation: shake 0.3s;
  }
  @keyframes shake {
    0%{
        transform: rotate(0deg) translateY(0px)
    }
    25%{
        transform: rotate(0deg) translateY(-5px)
    }
    50%{
        transform: rotate(0deg) translateY(0px)
    }
    75%{
        transform: rotate(0deg) translateY(5px)
    }
    100%{
        transform: rotate(0deg) translateY(0px)
    }
  }

  #colorButton {
    padding: 10px 20px;
    font-size: 16px;
    background-color: rgb(131, 130, 130);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    margin-left: 30px;
    margin-bottom: 5px;
}

#colorButton.clicked {
    background-color: rgb(80, 80, 80);
}

#colorButton.clicked span {
    display: none;
}

#colorButton.clicked::after {
    display: inline-block;
    font-weight: bold;
}

#streak {
  margin-left: 30px;
  margin-bottom: 0px;
  font-weight: bold;
  color:rgb(31, 30, 30);
}

#clear-button {
  padding: 5px 22px;
  margin: 7px;
  text-align: center;
  background-color: #d8d8d8;
  color: black;
  display: inline-block;
  border: none;
}

#go-button {
  padding: 5px 22px;
  margin: 7px;
  text-align: center;
  background-color: #d8d8d8;
  color: black;
  display: inline-block;
  border: none;
}