*{
    padding: 0px;
    margin: 0px;
}

nav div{
    margin: 50px 20px;
}
nav a{
text-decoration: none;
    color: white;
}
#sideNav{
    width: 250px;
    height: 100vh;
    position: fixed;
    right: -250px;
    top: 0;
    background: #f67c92;
    z-index: 2;
    transition: 0.5s;
}
.dropbtn {
    cursor: pointer;
    font-size: 16px;  
    border: none;
    outline: none;
    color: white;
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
  }

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }

  .dropdown-content a {
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
  }

  .show {
    display: inline-block;
  }
  #menu-btn{
    width: 50px;
    position: fixed;
    right: 65px;
    top: 35px;
    z-index: 2;
    cursor: pointer;
}
.container{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.speakButton{
    align-items: center;
    width: 100px;
    height: 50px;
    margin-right: 50%;
    margin-left: 47%;
    text-align: center;
    background-color: #f67c92;
    color:white;
    margin-top: 50px;
    margin-bottom: 50px;
    cursor: pointer;
    line-height: 25px;
}
#correct{
    flex-basis: 20%;
    /* background-color: #f67c92; */
    color: white;
    margin: 15px;
    text-align: center;
    font-size:100px;
    cursor: pointer;
    background-color: green;
}
#incorrect{
    flex-basis: 20%;
    /* background-color: #f67c92; */
    color: white;
    margin: 15px;
    text-align: center;
    font-size:100px;
    cursor: pointer;
    background-color: red;
}
.alphabet{
    flex-basis: 20%;
    background-color: #f67c92;
    color: white;
    margin: 15px;
    text-align: center;
    font-size:100px;
    cursor: pointer;
    min-width: 90px;
}

@media only screen and (max-width: 700px) {
    .container {
      flex-basis: 30%;
    }
    .speakButton{
      margin-right: 50%;
      margin-left: 37%;
      margin-top: 100px;
    }
  }