/* LATO FONTS */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300&display=swap');

/* RUSSO FONTS */
@import url('https://fonts.googleapis.com/css2?family=Russo+One&display=swap');

:root {
  --background-blue: rgb(13, 13, 104);
  --background-red: rgb(87, 3, 3);
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
  color: #333;
}

body {
  font-family: 'lato', sans-serif;
  color: rgb(240, 251, 255);
  background-color: black;
  line-height: 1.6;
  min-height: 100vh;
}

h1 {
  line-height: 1.2;
  margin: 10px 0;
}

h2 {
  font-weight: 300;
  line-height: 1.2;
  margin: 10px 0;
}

h2 .bold {
  font-weight: bolder;
}

html {
  height: 100%;
}

li {
  text-align: center;
  padding-bottom: 10px;
}

p {
  margin: 10px 0;
}

ul {
  list-style-type: none;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

/* BACKFRAME AREA */

.backframe {
  width: 100%;
  min-height: 100vh;
  position: relative;
  background-color: white;
  background: url(/img/TriangleGIMP2.jpg);
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  color: rgb(240, 251, 255);
  z-index: 0;
}

.backframe a {
  color: rgb(240, 251, 255);
  padding: 0 15px;
  margin: 0 5px;
}

.backframe a:hover {
  border-bottom: 2px white solid;
}

.backframe h1 {
  color: #fff;
  font-size: 50px;
  padding-bottom: 10px;
}

.backframe img {
  color: #fff;
}

.backframe p {
  margin: 10px;
}

.backframe .flex {
  justify-content: space-between;
}

.backframe .stat-img {
  width: 45px;
  height: 45px;
}

.showcase-form {
  position: relative;
  top: 10px;
  height: 300px;
  width: 400px;
  padding: 40px;
  z-index: 100;
  justify-self: flex-end;
}

.showcase-form .form-control {
  margin: 10px 0;
}

.showcase-form h2 {
  color: rgb(0, 0, 0);
  font-weight: 600;
  font-size: 25px;
  padding-bottom: 10px;
}

.showcase-form input[type='text'],
.showcase-form input[type='email'] {
  border: 0;
  border-bottom: 1px solid #b4becb;
  width: 100%;
  padding: 3px;
  font-size: 16px;
}

.showcase-form input:focus {
  outline: none;
}

/* VIDEOS */

/*  THIS IS CODE FROM TRAVERSY LORUKI PAGE - DELETE 
.backframe::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: rgba(0, 0, 0, 0.6);
  box-shadow: inset 120px 100px 250px #000000, inset -120px -100px 250px #000000;
}
*/

/* Tablets and Under */
@media (max-width: 768px) {
  .backframe {
    /* height: auto; */
  }

  .footer {
    position: relative;
    background-color: rgba(0, 0, 0, 0.2);
  }

  .grid,
  .backframe .grid_showcase,
  .backframe .grid_stat,
  .cloud .grid {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    overflow: visible;
  }

  .grid_showcase {
    height: auto;
  }

  .showcase-text {
    text-align: center;
    margin-top: 40px;
  }

  .showcase-form {
    justify-self: center;
    margin: auto;
  }
}

/* Mobile */
@media (max-width: 560px) {
  .navbar {
    height: auto;
  }

  .navbar ul {
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.3);
    flex-direction: column;
  }

  .flex {
    max-width: 100%;
  }
}

/*
 Minimum Standards 
@media (max-width: 375px) {
  .backframe {
    height: 265vh;
  }
}
*/
