* {
  margin: 0;
  padding: 0;

  transition: all 0.5s linear;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
 }

.random {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  width: 450px;
  height: 350px;

  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  backdrop-filter: blur(15px);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.2);
}

.random__title {
  padding: 14px 20px;

  text-transform: uppercase;
  font-weight: 600;
  color: #000;

  background-color: #fff;
  border-radius: 5px;
}

.random__text {
  width: 225px;

  text-align: center;
  font-size: 50px;

  background-color: #fff;
  border-radius: 5px;
}

.random__btn {
  display: block;
  padding: 20px 35px;
  margin-top: 40px;

  font-size: 20px;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;

  border: none;
  border-radius: 5px;
  cursor: pointer;
  
  background-color: #ffc107;
}

.btn:focus {
  outline: none;
}

.section {
  display: flex;
  padding: 15px;
  margin-top: 20px;
}

.copy {
  width: 50px;
  margin-left: 20px;
  padding: 0 10px;
  cursor: pointer;

  text-transform: uppercase;
  font-weight: 500;
  text-align: center;
  font-size: 15px;
  line-height: 60px;

  background-color: #fff;
}

.copy:hover {
  background-color: #eaeaea;
}