@import url('https://fonts.googleapis.com/css2?family=Sriracha&display=swap');

body {
    background-color: #002352;
    font-family: 'Sriracha', cursive;
    color: #ffffff;

}

h1, h2, h3, h4, h5, h6 {
    color: #ffcc00;
    display: block;
}

h1 {
    display: block;
}

hr {
  border: none;        /* removes default border */
  height: 2px;         /* thickness */
  background-color: #463800;  /* color */
  margin: 20px 0;      /* spacing */
  width: 80%;          /* optional width */
}

p {
    font-size: 1.2em;
    margin: 10px 0;
    text-align: center;
}

a {
    display: inline-block;
    color: #ff5ba2;
    text-decoration: none;
    transition: transform 0.3s ease;
}

a:hover {
    text-decoration: underline;
    transform: scale(1.1);
}


.main-container {
    justify-content: center;
    align-items: center;
    display: flex;
    height: 100vh;
    flex-direction: column;
}

footer {
    margin-top: 20px;
    font-size: 0.9em;
    color: #bbbbbb;
}

.btn {
    background-color: #ff5ba2;
    color: #002352;
    padding: 3px 10px;
    border-radius: 10px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid #ff5ba2;
}

.btn:hover {
    background-color: #ff81b7;
    color: #ffffff;
    border-color: #ff81b7;
    text-decoration: none;
}