@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&display=swap');

body {
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background-color: #1d1d27;
    background-image: 
        radial-gradient(circle,#4c4c4c .1em,transparent .1em),
        linear-gradient(#273c55 .1em,transparent .1em),
        linear-gradient(90deg,#273c55 .1em,transparent .1em);
    background-size: 3em 3em, 3em 3em, 3em 3em;
    background-position: 1.55em 1.55em,0 0,0 0;
    display: flex;
    justify-content: center;
    align-items: center;
  	animation: gridMove 4s linear infinite;
}

* {
    font-family: "Rajdhani", sans-serif;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: fit-content;
    width: 90%;
    max-width: 800px;
    background-color: #222222;
    border-radius: 10px;
    padding: 50px;
    color: white;
    border: 3px solid #00BAED;
    outline: 15px solid #222222;
    box-shadow: 0 5px 20px 2px white;
}

.row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

button {
    background-color: #00BAED;
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    box-shadow:
        inset .2rem .2rem 1rem #72e1ff, 
        inset -.2rem -.2rem 1rem #4a0cbe;
}

p {
    font-size: 20px;
    margin: 10px 0;
}

span {
    color: #00BAED;
    font-weight: 600;
}

@keyframes gridMove {
  0% {
      background-position: 1.55em 1.55em, 0 0, 0 0;
  }
  100% {
      background-position: 4.55em -1.45em, 3em -3em, 3em -3em;
  }
}
