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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: black;
}

body {
    font-family: "Rye", serif;
    letter-spacing: 2.5px;
    background-color: black;

    min-height: 100vh;

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

    text-align: center;
    color: white;
    /* Background */
    background-image: url("./images/spac006.gif"); /* adjust path */
    /* optional cinematic feel (remove on mobile if laggy) */
}

.horse-gif {
    width: 250px;
    max-width: 80vw; /* responsive */
    height: auto;
    padding-top: 1rem;
    padding-bottom: 1.4rem;
}

.sign-gif {
    width: 125px;
    max-width: 80vw; /* responsive */
    height: auto;
    padding-top: 1rem;
    padding-bottom: 1.4rem;
}

h1 {
    font-size: 1.4rem;
}

p {
    font-size: 10pt;
}
