.text {
    font-family: Arial, Helvetica, sans-serif; 
    font-size: x-large;
}
.heading {
    size: 400%;
    font-family: Arial, Helvetica, sans-serif;
}
.button {
    background-color:gray;
    font-family:Arial, Helvetica, sans-serif;
    padding:20px;
    border-style:solid;
    border-color:black;
    border-width:4px;
    text-decoration:none;
    color:black;
    font-size: 18pt;
    border-radius: 15px;
}
.link {
    color:black;
    font-family:Arial, Helvetica, sans-serif;
    font-weight: bold;
    font-size: x-large;
}
.footerLink {
    color:black;
    font-family:Arial, Helvetica, sans-serif;
    font-weight: bold;
    font-size: large;}
.centerAlign {
    text-align: center;
}
.marquee-item {
    margin-right: 200px;
}

.spinA {
    animation-name: spin;
    animation-duration: 1s;
    animation-iteration-count: infinite;
}

.spinB {
    animation-name: spin;
    animation-duration: 4s;
    animation-iteration-count: 1;
}
.welcomeSpin {
    animation-name: welcomeSpin;
    animation-duration: 4s;
    animation-iteration-count: 1;
    animation-delay: 1s;
}

.bounce{
    animation-name: bounce;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}

@keyframes spin {
    0% {transform: rotate(0deg);}
    100% {transform: rotate(360deg);}
}
@keyframes welcomeSpin {
    0% {transform: rotate(0deg);}
    100% {transform: rotate(360deg);}
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-30px);}
    60% {transform: translateY(-15px);}
}
.linkTrans {
    font-weight: normal;
    font-size: x-large;
    transition: font-size 1s;
}
.linkTrans:hover {
    font-weight: normal;
    font-size: xx-large;
}
@font-face {
    font-family: 'Oswald';
    src: url('assets/font/Oswald-Regular.woff2') format('woff2'), /* Modern Browsers */
         url('assets/font/Oswald-Regular.woff') format('woff');   /* Legacy Browsers */
  }
.oswald {
    font-family: "Oswald";
}
#redirect {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: normal;
    text-decoration: none;
    color: black;
    font-size: 100pt;
    background-color: rgb(239,239,239);
    border-color: black;
    border-width: 10px;
    border-style: solid;
}