

body{
background-color: #192748;
color: #fff;
font-family: "Roboto", sans-serif; 
font-weight: bold;
font-size: 18pt;
text-align: center;
padding: 50px 15px 50px 15px;
}

h1{
display: none;
}

.theS{
max-width: 150px;
display: inline-block;
margin-bottom: 20px;
}

.theF{
max-width: 75px;
}

.theF:hover{
opacity: .7;
}

p{
text-transform: uppercase;
letter-spacing: 2px;
}

p a{
text-decoration: none;
color: #fff;
display: inline-block;
margin-bottom: 10px;
}

.button{
margin-top: 10px;
margin-bottom: 15px;
width: 90%;
display: inline-block;
border-style: solid;
border-width: 5px;
border-style: solid;
border-color: #192748;
cursor: pointer;
transition: all 0.5s ease-in-out;
}

.button:hover{
border-color: #fff;
}


@media only screen and (max-width: 600px) {

body{
font-size: 14pt;
}

}

@media only screen and (max-width: 500px) {

body{
font-size: 12pt;
padding: 20px 0px 20px 0px;
}

}

@media only screen and (min-width: 800px) {
.button{
max-width: 70%;
}
}

@media only screen and (min-width: 1200px) {
.button{
max-width: 50%;
}
}


@media only screen and (min-width: 2000px) {
.button{
max-width: 800px;
}
}



@keyframes fadeIn {
  from {
    opacity: 0;
    color: #fffc00;
  }
  to {
    opacity: 1;
    color: white;
  }
}

.fade-in-text {
  animation: fadeIn 2s ease-in-out forwards;
}