* {
  box-sizing: border-box; 
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Bubblegum Sans', cursive;
  background-color: #0A1436;
  color: #FFFFFF;
}
.container{
  padding-bottom: 55px;
  position: relative;
  margin: 0 auto;  
  width: 500px;
  height: 100vh;
  background: url('./images/main-bgd.png') center center/cover no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
}
img {
  margin-bottom: 170px;
}
.choose {
  display: inline-flex;       
  align-items: center;        
  justify-content: center;
  font-weight: 400;
  font-size: 30px;
  border-radius: 20px;
  width: 117px;
  height: 62px;
  backdrop-filter: blur(42px);
  background: #0A1436;
  text-align: center;
  outline: none;
  color: #FFFFFF;
  text-decoration: none;
  transition: all 0.2s ease;
}

.choose:hover {
  transform: translateY(-4px); 
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.4);
}

.choose:focus {
  transform: translateY(-4px); 
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.4);
}