@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
}

body {
  width: 100%;
  height: 100vh;
  background-color: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  width: 200px;
  height: 200px;
  border-radius: 10px;
  border: 1px solid white;
  background-color: rgb(255, 255, 255);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.container h3 {
  font-size: 1.4rem;
}

.container button {
  padding: 5px;
  border: none;
  border-radius: 5px;
  background: transparent;
  border: 1px solid black;
  cursor: pointer;
  transition: background .3s ease
}

.container button:hover {
  background: rgba(0, 0, 0, 0.075);
}