
/* 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;
}

.question-section{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 10%;
    max-width: 50%;
}

@media only screen and (min-width: 1820px) {
    .question-section{
    margin-top: 10px;    }
}


div {
    overflow-x: hidden;
}

.small-section{
    display: flex;
    flex-direction: row;
    margin-bottom: 10%;
    max-width: 100%;
    
}

/* 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% */
}

.mode {
    font-size: 15px;
    width: 90%;
    margin: 2.5%;
}

/* 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 */
}

h2 {
    color: #ffffff;
    text-align: center; /* Center the h2 horizontally */
}

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;

}

.maj-min-indicator {
    color: #ffffff;
    font-style: italic;
    }

p {
    padding: 0px; /* Decrease the padding on <p> */
    color: #60ffd5;
    
}

.video-link {
    color: #ffffff;
    text-decoration: underline;
    text-decoration-color: #60ffd5;
}

button {
    display: block;
    margin-bottom: 10px;
    margin: 5%;
    background-color: #242424;
    font-size: 16px;
    color: #60ffd5;
    border-radius: 5px;
    border: 2px solid #60ffd5;
    transition: color 0.3s, background-color 0.3s;
    text-align: center;
    width: 50%;
    padding: 20px;
    transition: transform 330ms ease-in-out;
}

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: #242424;
    font-size: 16px;
    color: #60ffd5;
    border-radius: 5px;
    border: 2px solid #60ffd5;
    transition: color 0.3s, background-color 0.3s;
    text-align: center;
    width: 50%;
    padding: 20px;
    transition: transform 330ms ease-in-out;
}

#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;
}


.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;
}
