*{
    font-size: 24px;
}

body {
    margin: 0;
    padding: 0;
    background-color: #102523;
    text-align: center;
    color: #F4F4F4;
    font-family: 'Azeret Mono', monospace;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

img {
  width: 100%;
  margin-right: 20px;
  margin-bottom: 20px;
    
}

footer {
  background: #1D90A2;
  text-align: center;
  padding: 15px;
  margin-top: auto;
}

#player-form {
  position: absolute;
  top: 25%;
  left: 40%;
}

#image-container {
    display: flex;
    justify-content: center;

}

.input-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #1D90A2;
    padding: 0.5rem;
    border-radius: 16px;
    color: #A2BCE0;
  
    margin: 0 auto;
    
  }
  
  input {
    margin: 0 10px 0 10px;
    width: 100%;
    border: none;
    outline: none;
    background: #1D90A2;
    color: #F4F4F4;
  }
  
  ::placeholder {
    color: #F4F4F4;

  }

button {
    border: none;
    outline: none;
    background: #1D90A2;
    color: #F4F4F4;

}

.group {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  margin-top: 400px;
  width: 100%;
  text-align: center;
}

.item {
  flex: 1;
  margin:10px;
}

/* -------  Media Query ------- */
@media screen and (max-width: 425px) {
  .group {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    width: 100%;
    margin-top: 0;
    margin-bottom: 0;
    
  }
  #player-form {
    margin: 0 auto;
    position: relative;
    margin-top: 300px;
    margin-right: 200px;
    margin-left: -100px;
  }

  img {
    width: 100%;
  }
  body {
    background-color: #102523;
    text-align: center;

  }
}
