main{
    text-align: center;
    flex: 1;
}
header{
    text-align: center;
}
#play_button{
    display: block;
    width: 10vw;
    height: 10vw;
    font-size: 2.5vw;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    background-color: #4caf50;
    border: none;
    border-radius: 100%;
    cursor: pointer;
    box-sizing: border-box;
   
    
}
#startButtonContainer{
    display: flex;
  justify-content: center;
  align-items: center;
}
h1, h2, h3, h4, h5, h6{
    font-family: 'Montserrat', sans-serif;
    color:  #C0C0C0;

}
#country_input ,#enter_button{
    display: none;
}
#country_input{
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 0.77294685990338164251207729468599vw 1.159420289855072463768115942029vw;
    font-size: 16px;
    color: #333;
    transition: border-color 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

#country_input:focus{
    outline: none;
    border-color: #66afe9;
    box-shadow: 0 0 5px #66afe9;
}
::placeholder {
    color: #999;
    font-style: italic;
  }
.key, #enter_button{
    display: inline-block;
    padding: 0.1vw;
    margin: 0.1vw;
    font-size: 2.5vw;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    color:  #C0C0C0;
    background-color: #1B1C1E;
    border: none;
    border-radius: 0.5vw;
    cursor: pointer;
    box-sizing: border-box;
    width: 7vw;
    height: 5vw;
}
#key-delete{
    fill: white;
}
.key:hover {
    background-color: #272727;
  }
  
#key-space, #enter_button{
    width: 12vw;
    height: 3.7vw;
}
#keyboard{
    padding: 1vw;
}

body {
    display: flex;
    flex-direction: column;
    background-color:  #242526;
  }
  
  
  footer {
    margin-top: auto;
  }
  .button-pressed {
  background-color: #272727;
}

@keyframes myAnimation {
    0% {
      opacity: 1;
      transform: translateY(0);
    }
    50% {
      opacity: 0.5;
      transform: translateY(-20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .animated {
    animation: myAnimation 1s linear infinite;
  }
  
