@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

* {
  box-sizing: border-box
}

body {
  font-family: 'Ubuntu', sans-serif;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background-color: #4551c0;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  width: auto;
  min-width: 30%;
  background-color: rgb(120, 218, 221);
  color: rgb(65, 52, 52);
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  margin: 5%;
  padding: 20px;
  border: none;
  border-radius: 5px;
  box-shadow: 5px 5px 15px rgba(105, 91, 91, 0.8);
}