@font-face {
  font-family: dodger3d;
  src: url(../assets/dodger/dodger33d.ttf);
}

@font-face {
  font-family: dodger-ital;
  src: url(../assets/dodger/dodger3condital.ttf);
}

@font-face {
  font-family: dodger;
  src: url(../assets/dodger/dodger3.ttf);
}

:root {
  --main-blue: #044c6c;
  --sec-blue: #2595c2;
  --font-size-05-tablet: 1.2em;
  --font-size-1-tablet: 1.25em;
  --font-size-2-tablet: 1.5em;
  --font-size-05-desktop: 1.25em;
  --font-size-1-desktop: 1.45em;
  --font-size-2-desktop: 2em;
  --font-size-1-mobile: 1.05em;
}

*,
*:before,
*:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  
}

body {
  font-family: "DM Sans", sans-serif;
  
}

/**************************************** header ******************************************/
.spyder-logo-container {
  padding: 0.85em 2em;
  -webkit-box-shadow: 2px -2px 5px 1px rgba(0,0,0,0.51);
  -moz-box-shadow: 2px -2px 5px 1px rgba(0,0,0,0.51);
  box-shadow: 2px -2px 5px 1px rgba(0,0,0,0.51);
  background-color: white;
  display: flex;
  justify-content: space-between;
}

.logo {
  font-family: dodger;
  font-size: 2.75em;
  letter-spacing: 0.1em;
}

.spyder-website-link {
  text-decoration: none;
  color: var(--main-blue);
  font-size: 1.25em;
  margin-top: 0.25em;
}

.logo > a {
  text-decoration: none;
  color: var(--main-blue)
}


/*Mobile-------------------------------------*/
@media only screen and (max-width: 799px) {
  .spyder-logo-container {
    padding: 0.85em 2em;
    -webkit-box-shadow: 2px -2px 5px 1px rgba(0,0,0,0.51);
    -moz-box-shadow: 2px -2px 5px 1px rgba(0,0,0,0.51);
    box-shadow: 2px -2px 5px 1px rgba(0,0,0,0.51);
    background-color: white;
    display: flex; 
    flex-direction: column;
    color: var(--main-blue);
  }
  .logo {
    font-family: dodger;
    font-size: 2em;
    letter-spacing: 0.1em;
    text-align: center;
  }
  .spyder-website-link {
    text-decoration: none;
    color: white;
    font-size: 0em;
    visibility: hidden;
  }
}


/*******************************************************************************************/


/**************************************** footer ******************************************/

footer {
  background-color: black;
}

/*Mobile-------------------------------------*/
@media only screen and (max-width: 799px) {
  .footer-links .fa {
    padding: 15px;
    font-size: 20px;
    width: 50px;
    text-align: center;
    text-decoration: none;
    margin: 5px 2px;
    border-radius: 10px;
  } 
  .footer-links {
    text-align: center;
  }
  .main-footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 2em;
    
  }
}

.spyder-website {
  padding: 1em;
}
.spyder-website a {
  text-decoration: none;
  color: white;
}
.spyder-website a:hover {
  text-decoration: none;
  color: var(--sec-blue);
}
.main-footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  padding: 2em;
  
}
.contact a {
  color: white;
}

.contact {
  text-align: center;
}
.copyright {
  color: white;
  padding: 0.5em;
  text-align: center;
}
hr { 
  border: none;
  height: 1px;
  width: 100%;
  margin: 0 auto;
  background-color: white;
  color: white;
}

/*******************************************************************************************/
