*, *::before, *::after {
box-sizing: border-box;
/* font-family: monospace;
font-size: large; */
}

body{
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  background-color: #333;
  color: #fff;
}

.container {
width: 800px;
max-width: 80%;
background-color: whtie;
padding: 10px;
border-radius: 5px;
box-shadow: 0 0 10px 2px;
background-color: white;
  color: black;
}

.btn-grid{
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 10px;
  margin-top: 20px;
}

.btn {
  background-color: hsl(200, 100%, 50%);
  border:3px solid hsl(200, 100%, 50%);
  border-radius: 15px;
  padding: 5px 10px;
  color: white;
  outline: none;
}

.btn:hover {
  border:3px solid hsl(115, 86%, 54%);
}