@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@200..800&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

/*variables*/
:root {
    --slateBlue: #6564DB;
    --palatinateBlue: #232ED1;
    --oxfordBlue: #101D42;
    --paleAzure: #89DAFF;
    --richBlack: #0D1317;
}

body {
  width: 100dvw;
  height: 100dvh;
  margin: 0;
  padding:.5em;
  overflow: hidden;
  font-family: "Lato";
  color:var(--paleAzure);
  background-color: var(--richBlack);
}

h1, h2, h3, p {
  text-align: center;
}

h2 {
  color: white;
}

p {
  font-family: "Dosis";
}

#main_media_box {
  display: flex;
  justify-content: space-evenly;
}

.options {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: .5em;
  border-radius: 5px;
  border: var(--slateBlue) 2pt solid;
}

.options_link_box {
  width: 100%;
}
.links {
  text-decoration: none;
}
.buttons {
  width: 100%;
  padding: .5em;
  background-color: var(--slateBlue);
  border: none;
  border-radius: 5px;
  color:white;
}

#footerbox {
  display: flex;
  justify-content: space-evenly;
}

.logobox {
  height: 120px;
  width: 300px;
  border-radius: 5px;
  overflow: hidden;
}
img {
  height: 100%;
  width: 100%;
  object-fit: fill;
}

/*media queries*/
@media only screen and (max-width: 360px) {
  h1 {
    font-size: 16pt;
  }
}
