
/* Make the site look modern and friendly */

/* Style the navbar */
.topnav {
    overflow: hidden;
    background-color: rgba(30,30,30,0.4);
    width: 90%;
    margin-right: 5%;
    margin-left: 5%;  
    margin-top: 1%;
    position: fixed;
    border-radius: 25px;
    border: solid 2px #ffffff;
}

.topnav img {
    width: auto;
    height: 25px;
}

i.fa.fa-bars::before {
    display: inline-flex;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
}

/* Hide the links inside the navigation menu (except for logo/home) */
.topnav #myLinks {
    display: none;
  }
  
  /* Style navigation menu links */
  .topnav a {
    color: white;
    padding: 12px 14px;
    text-decoration: none;
    font-size: 17px;
    display: block;
  }
  
  /* Style the hamburger menu */
  .topnav a.icon {
    background: rgba(30,30,30,.0);
    display: block;
    position: absolute;
    width: 15px;
    margin-right: 20px;
    right: 0;
    top: 0;
  }
  
  /* Style the active link (or home/logo) */
  .active {
    background-color: rgba(30,30,30,.5);
    color: white;
  }

  @supports (-webkit-backdrop-filter: none) or (backdrop-filter: none) {
    .topnav{
      -webkit-backdrop-filter: blur(10px);
      backdrop-filter: blur(10px);
    }
  }

  @supports (-webkit-backdrop-filter: none) or (backdrop-filter: none) {
    .topnav a.icon {
      -webkit-backdrop-filter: blur(10px);
      backdrop-filter: blur(10px);
    }
  }
  

body {
    font-family: Arial, sans-serif;
    color: #60ffd5;
    text-align: center;
    word-wrap: break-word; /* Enable text wrapping */
    font-size: 20px;
    overflow-x: hidden;

}

body {
    font-family: Arial, sans-serif;
    background-color: #242424;
    color: #ffffff;
    display: block;
    justify-content: center;
    align-items: center;
    text-decoration-color: #60ffd5;
}

main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

div {
    overflow-x: hidden;
}

/* Separate each answer choice on a separate line */
.answer-button {
    display: block;
    margin-bottom: 10px;
    background-color: rgba(96, 255, 213,0.07);
    font-size: 25px;
    color: #ffffff;
    border-radius: 5px;
    border: 2px solid #ffffff;
    text-align: center;
    width: 100%;
    padding: 20px;
    transition: transform 330ms ease-in-out, background-color 0.3s, color 0.3s;

}

.answer-button:hover {
    background-color: #60ffd5;
    color: #424242;
    transform: scale(1.1); /* Increase the size by 10% */
}

/* Add outlines around divs to group information about the same chord */
.chord {
    outline: 2px solid #60ffd5;
    padding: 20px;
    margin-bottom: 20px;
    width: auto;
    border-radius: 5px;
}

h1 {
    text-decoration: underline;
    font-weight: bold;
    font-size: 65px;
    color: #ffffff;
    text-align: center; /* Center the h1 horizontally */
    text-decoration-color: #60ffd5;

}

h2 {
    color: #ffffff;
    text-align: left; /* Center the h2 horizontally */
    text-decoration: underline;
    text-decoration-color: #60ffd5;

}

a {
    text-decoration: none;
}

/* Add fade-in animation to all elements */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Apply fade-in animation to all elements */
* {
    animation: fadeIn 0.5s ease-in-out;
}

/* Apply Times New Roman italics font to the numeral class */
.numeral {
    font-family: "Times New Roman", Times, serif;
    font-weight: lighter;
    font-size: 30px;

}

.note {
    font-size: 35px;
    font-weight: bold;
}

p {
    padding: 0px; /* Decrease the padding on <p> */
    
}

button {
    display: block;
    margin-bottom: 10px;
    margin: 5%;
    background-color: rgba(96, 255, 213,0.07);
    font-size: 16px;
    color: #ffffff;
    border-radius: 5px;
    border: 2px solid #ffffff;
    transition: color 0.3s, background-color 0.3s;
    text-align: center;
    width: 50%;
    padding: 20px;
    transition: transform 330ms ease-in-out, background-color 0.3s, color 0.3s;
}

button:hover{
    background-color: #60ffd5;
    color: #424242;
    transform: scale(1.1); /* Increase the size by 10% */
}

#abutt{
    display: block;
    margin-bottom: 10px;
    margin: 5%;
    background-color: rgba(96, 255, 213,0.07);
    font-size: 16px;
    color: #ffffff;
    border-radius: 5px;
    border: 2px solid #ffffff;
    transition: color 0.3s, background-color 0.3s;
    text-align: center;
    width: 50%;
    padding: 20px;
    transition: transform 330ms ease-in-out, background-color 0.3s, color 0.3s;
}

#abutt:hover{
    background-color: #60ffd5;
    color: #424242;
    transform: scale(1.1); /* Increase the size by 10% */
}

  .button_div {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hook {
    padding: 20px;
    margin-bottom: 20px;
    width: auto;
    border-radius: 25px;
    background-color: #242424;
    display: block;
}

.hook h2{
    text-align: left;
    text-decoration-color: #60ffd5;
}

.hook p{
    text-align: left;
}

.hook img{
    max-width: 90%;
    max-height: 350px;
    margin-right: 20px;
    border-radius: 50px;
}

.hook .left{
    flex: 1;
}

.hook .right{
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media only screen and (min-width: 768px) {
    .hook {
      display: flex;
    }
    .hook .left{
        width: 100%;
    }
  }

@media only screen and (min-width: 1820px) {
    .hook{
        padding: 20px 280px;
    }
}



.chords {
    padding: 20px;
    margin-bottom: 20px;
    width: auto;
    border-radius: 25px;
    background-color: #242424;
    display: block;
}

.chords h2{
    text-align: left;
    text-decoration-color: #60ffd5;
}

.chords p{
    text-align: left;
}

.chords img{
    max-width: 90%;
    max-height: 350px;
    margin-right: 20px;
    border-radius: 50px;
}

.chords .left{
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chords .right{
    flex: 1;
}

#hide_mobile{
    display: none;
}

#show_mobile{
    display: flex;
}

@media only screen and (min-width: 768px) {
    .chords {
      display: flex;
    }
    .chords .left{
        width: 100%;
    }
    #hide_mobile{
        display: flex;
    }
    
    #show_mobile{
        display: none;
    }
  }

@media only screen and (min-width: 1820px) {
    .chords{
        padding: 20px 280px;
    }
  }

.progressions {
    padding: 20px;
    margin-bottom: 20px;
    width: auto;
    border-radius: 25px;
    background-color: #242424;
    display: block;
}

.progressions h2{
    text-align: left;
    text-decoration-color: #60ffd5;
}

.progressions p{
    text-align: left;
}

.progressions img{
    max-width: 90%;
    max-height: 350px;
    margin-right: 20px;
    border-radius: 50px;
}

.progressions .left{
    flex: 1;
}

.progressions .right{
    flex: 1;
    display: flex;
    align-items: center;
}

@media only screen and (min-width: 768px) {
    .progressions {
      display: flex;
    }
    .progressions .left{
        width: 100%;
    }
  }

@media only screen and (min-width: 1820px) {
    .progressions{
        padding: 20px 280px;
    }
}

.ai {
    padding: 20px;
    margin-bottom: 20px;
    width: auto;
    border-radius: 25px;
    background-color: #242424;
    display: block;
}

.ai h2{
    text-align: left;
    text-decoration-color: #60ffd5;
}

.ai p{
    text-align: left;
}

.ai img{
    max-width: 90%;
    max-height: 350px;
    margin-right: 20px;
    border-radius: 50px;
}

.ai .left{
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai .right{
    flex: 1;
}

#hide_mobile{
    display: none;
}

#show_mobile{
    display: flex;
}

@media only screen and (min-width: 768px) {
    .ai {
      display: flex;
    }
    .chords .left{
        width: 100%;
    }
    #hide_mobile{
        display: flex;
    }
    
    #show_mobile{
        display: none;
    }
  }

@media only screen and (min-width: 1820px) {
    .ai{
        padding: 20px 280px;
    }
  }

.footer {
    overflow: hidden;
    background-color: #181818;
    width: 100%;
    margin-right: 1%;
    margin-top: 1%;
    padding-top: 20px;
    border-radius: 25px;
    line-height: 30px;
}

.footer a {
    color: #ffffff;
    text-decoration: underline;
    text-decoration-color: #60ffd5;
}
