@import url('https://fonts.googleapis.com/css2?family=Lilita+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@100..700&display=swap');

html,
body {
    justify-content: center;
    align-items: center;
    background-size: cover;
    height: 100%;
    width: 100%;
    overflow-x: hidden;
    background-image: url('/assets/img/backgrounds/11.gif');
}
.box {
        background-color: #1f2124;
        border-radius: 20px;
        margin: auto;
        width: 200px;
        height: 55px;
        box-shadow: 0px 5px 10px 0px #2e2e2e;
        font-family: 'Lilita One';
        font-size: 40px;
        text-align: center;
        color: white;
}
.button-green {
    background-color: #4CAF50; /* Green */
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    border-radius: 8px;
    transition-duration: 0.4s;
}
.button-blue {
    background-color: #008CBA; /* Blue */
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    border-radius: 8px;
    transition-duration: 0.4s;
}
.button-red {
  background-color: #e02d16; /* Red */
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  border-radius: 8px;
  transition-duration: 0.4s;
}