@import url("https://fonts.googleapis.com/css?family=Raleway:300,400,700&display=swap");

:root {
  --r: #005c99;
  --rt: rgba(45, 67, 128, 0.7);
  --rd: #13132b;
  --g: #464646;
  --gt: rgba(70, 70, 70, 0.8);
  --w: #fafafa;
}

::selection{
  background-color: var(--rd);
  color: var(--w);
}


body {
 font-family: "Raleway", sans-serif !important;
  margin: 0;
  padding: 0;
}

.highlight {
  color: var(--r);
}


.start a {
  color: var(--rd);
  text-decoration: none;
  font-weight: 600;
}


.start a:hover {
  color: var(--rt);
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center; /* centers items horizontally */
  justify-content: center; /* centers items vertically */
  text-align: center;
  background-image: linear-gradient(360deg, var(--rd), var(--rt));
  background-size: cover;
  background-position: center center;
  min-height: 25vh;
  color: #fafafa;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 0.5rem;
  color: var(--w);
}

.hero h2 {
  font-size: 1.6rem;
  margin-top: 0.5rem;
}
.hero p {
  font-size: 1.5rem;
}


.start {
  text-align: justify;
  padding: 5%;
}


.start h2{
  max-width: fit-content;
  font-size: 2rem;
  border-bottom: 1px solid var(--g);
}




.start h2 {
  margin-left: 5%;
}


.center {
  display: table;
  width: 100%;
}


.ssp {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 1rem;
  padding: 5%;
}

.credit {
  text-align: right;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--w);
}

.ssp-contact {
  display: grid;
  background-color: var(--rd);
  color: var(--w);
  text-align: center;
  padding: 5%;
  clip-path: polygon(100% 0%, 100% 62%, 50% 100%, 0% 100%, 0% 38%, 50% 0%);
}

.ssp-contact h2 {
  font-size: 2rem;
}

.ssp-contact a {
  color: var(--w);
  text-align: center;
  text-decoration: none;
  padding: 5%;
  font-weight: 550;
}

.middle {
  display: grid;
  margin: auto;
}

.footer {
  background-color: var(--g);
  color: var(--w);
  text-align: center;
  padding: 1%;
}

.footer img {
  height: 2rem;
}

@media only screen and (min-width: 640px) {
 
  .ssp {
    grid-template-columns: 2fr 1fr;
  }
}
