@import url('https://fonts.googleapis.com/css2?family=Tiny5&display=swap');

body {
    background-color: darkblue;
    background-image: url(bg.gif);
    font-family: "Tiny5", sans-serif;
    display: flex;
    color:rgb(208, 218, 229)
}

main {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  background-color: rgb(31, 27, 41);
  border: 2px dashed rgb(208, 218, 229);
  width: 90%;
  max-width: 550px;
  height: auto;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-direction: column;
  padding: 10px;
  text-align: center;
  box-sizing: border-box;
  border-radius: 5px;
}

button {
    min-width: 80%;
    background-color: rgb(31, 27, 41);
    color: white;
    border: 2px dashed rgb(208, 218, 229);
    font-family: "Tiny5", sans-serif;
    border-radius: 5px;
    height: 50px;
    font-size: 20px;
}

button:hover {
    background-color: rgb(74, 53, 128);
    letter-spacing: 3px;
}

h2 {
    margin-bottom: 0;
    margin-top: 5px;
}

hr {
    width: 70%;
    border-top: 2px dashed rgb(208, 218, 229);
    border-bottom: none;
    margin: 15px;
}

.webrings {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}