@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

body {
  display: flex;
  justify-content: center;
  align-items: center;

  background: rgb(10, 10, 10);

  font-family: 'Inter', sans-serif;
  font-weight: bold;
  font-size: 3vh;

  overflow: hidden;
}

.collin__container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: .5vh 3vh;

  display: flex;
  justify-content: center;
  align-items: center;

  background: rgba(255, 255, 255, .25);
  border: rgba(255, 255, 255, .5) 1px solid;
  border-radius: 10px;

  text-align: center;
  color: white;
}