/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}


/* HTML5 display-role reset for older browsers */

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

:root {
  --main-color: ;
}

a {
  color: white;
  font-weight: bold;
  text-decoration: none;
}

a:visited {
  color: white;
}

a:hover {
  text-decoration: underline;
}

h1 {
  margin: 0;
  font-size: 1.5vw;
  text-decoration: underline;
}

body {
  /* margin: 15vw; */
  background: var(--main-color);
  overflow: hidden;
}

.box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  width: 100%;
  height: 100vh;
}

.header {
  display: flex;
  align-content: center;
  justify-content: space-between;
  font-family: Helvetica;
  font-weight: bold;
  width: 90%;
  color: #ffffff;
  font-size: 5vw;
}

.logo {
  width: 8.75vw;
}


/***** TEXT *****/

.center {
  display: flex;
  flex-direction: row;
  width: 90%;
  justify-content: space-between;
}

.list {
  list-style: none;
  padding: 0;
  color: white;
  font-family: Helvetica;
  font-size: 1.125vw;
  width: 57.5%;
}

.dotted {
  border-top: 1.25px solid white;
  border-style: dashed;
}

#text {
  font-family: Helvetica;
  font-weight: medium;
  font-size: 1.125vw;
  margin-left: 0;
  margin-top: 0.25vw;
  line-height: 1.75vw;
}

ul {
  display: flex;
  flex-direction: column;
  /* background-color: green; */
  height: 100%;
  justify-content: space-evenly;
}

h1 {
  font-weight: bold;
}

p {
  display: inline;
}

input {
  border: 0.05vw solid white;
  width: 4.5vw;
  background-color: transparent;
  padding: 0.25vw 0.3vw 0.25vw 0.75vw;
  font-size: 1vw;
  /* cursor: pointer; */
  font-family: Helvetica;
  color: white;
}

input:focus {
  outline: none;
}


/***** END TEXT *****/


/***** UI *****/

button {
  border: 0.05vw solid white;
  background-color: transparent;
  padding: 0.45vw 1.5vw 0.5vw 1.5vw;
  font-size: 1vw;
  cursor: pointer;
  font-family: Helvetica;
  color: white;
}

#button002 {
  margin-left: 2vw;
}

#button003 {
  display: none;
}

button:focus {
  outline: none;
}

button:hover {
  background-color: white;
}

button:active {
  transform: translateY(0.25vw);
}

.buttons {
  margin-top: 10%;
}

.slider-container {
  display: flex;
  justify-content: space-around;
  flex-direction: column;
  height: 25%;
  width: 50%;
}

#sliderP {
  display: block;
  margin-top: 0.5vw;
  margin-left: 0;
  margin-bottom: 1vw;
}

#sliderOne {
  display: block;
  margin-top: 0.5vw;
  margin-left: 0;
  margin-bottom: 1vw;
}


/***** END UI *****/


/***** GRID *****/

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-content: center;
}

#squares {
  display: grid;
  justify-content: center;
  align-content: center;
  grid-template-columns: repeat(5, minmax(6.75vw, 0vw));
  grid-auto-rows: 5.5vw;
}

#squares::before {
  content: '';
  width: 0;
  padding-bottom: 100%;
  grid-row: 1 / 1;
  grid-column: 1 / 1;
}

#squares> :first-child {
  grid-row: 1 / 1;
  grid-column: 1 / 1;
}

#squares>* {
  background: #ffffff;
  margin: 0.5px;
}


/***** END GRID *****/


/******** MEDIA QUERY ********/

@media only screen and (max-width: 576px) {
	.box {
	  display: flex;
	  flex-direction: column;
	  align-items: center;
	  justify-content: space-evenly;
	  width: 100%;
	  height: 100vh;
	}

  .header {
    font-size: 13.5vw;
		display: flex;
		justify-content: center;
		/* margin-top: -10vh;
		margin-bottom: -10vh; */
  }

  ul {
    display: none;
  }

  #squares {
    display: grid;
    grid-template-columns: repeat(5, minmax(17.75vw, 0px));
    grid-auto-rows: 15.5vw;
  }
  button {
    border: 0.25vw solid white;
    background-color: transparent;
    padding: 2vw 4vw 2vw 4vw;
    font-size: 4vw;
    cursor: pointer;
    font-family: Helvetica;
    color: white;
  }
  button:active {
    transform: none;
  }
  #button003 {
    margin-left: 10vw;
    display: inline;
    padding: 2vw 7vw 2vw 7vw;
  }
  .download {
    display: none;
  }
  .logo {
    display: none;
  }
}
