/*for body, h1, p, img, a, see questionpages.css*/
body
{
    background-image: url("background.png");
    animation: scroll-x 40s linear infinite; /*'plays' the scroll-x animation linearly over 20s infinitely*/
    cursor: url('cursor.png'), auto;
}
@keyframes scroll-x {
    /*animates moving completely across the screen*/
  0% {
    background-position-x: 0; /* Start position */
  }
  100% {
    background-position-x: -1920px; /* End position, moves the full width of the container */
  }
}
h1
{
    font-family: "Rock Salt", cursive;
    font-weight: 400;
    font-style: normal;
    text-align: center;
    font-size: 3vw;
    margin: 0px;
}
p
{
    font-family: "Over the Rainbow", cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 2vw;
    margin: 30px;
    margin-top: 0px;
    text-align: center;
}
/*only unique thing- center content box*/
.box
{
    /*aesthetic formatting*/
    background-color: white;
    border-radius: 10px;
    /*making it view size dependent*/
    width: 80vw;
    height: 25vh;
    /*more aesthetics*/
    border: 4px solid #32a8ed;
    /*aligning it and its text center*/
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    /*adding blue shadow*/
    box-shadow: 5px 5px #5ab7ed;
}
button 
{
    background-color: #4eb2ed;
    border-color: white;
    color: white;
    font-family: "Over the Rainbow", cursive;
    font-weight: 1000;
    font-size: 2.5vw;
    width: 50vw;
    height: 10vh;
    display: block;
    margin: 0 auto;
    margin-top: 50px;
}
img
{
    width: 50%;
}
a
{
    text-decoration: none;
    color: black;
}