* {
  position: relative;
  box-sizing: border-box;
}
body {
  margin: 0;
}

header {
  height: 25vw;
  background: #07598c;
  color: white;
  font-size: 10vw;
  font-weight: 800;
}

main {
  padding-top: 20px;
}

p {
  max-width: 800px;
  margin-top: 0;
  margin-left: 20px;
  font-size: 1.5rem;
  line-height: 2rem;
}

.progressSpaceReserve {
  width: 100%;
  height: 60px;
  background: grey;
}

.progressHolder {
  border-top: 1px solid #ccc;
  background: white;
  width: 100%;
  height: 60px;
  bottom: 0;
  position: absolute;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-direction: column;
}

.progressBarBG {
  width: 400px;
  height: 10px;
  background: #ccc;
}

.progressBar {
  width: 400px;
  height: 10px;
  background: red;
  transform: scaleX(0);
  transform-origin: 0 0;
}

.fixed {
  position: fixed;
}

h4,
header,
h1,
h2 {
  font-family: sans-serif;
}

h4 {
  color: #222;
  margin: 0;
  padding: 0;
}

.centered {
  display: flex;
  justify-content: center;
  align-items: center;
}

.comments {
  padding: 20px;
  color: white;
  font-family: sans-serif;
  background: #7aa5bf;
}

h2 {
  color: white;
  font-size: 4em;
}

.comment {
  width: 80%;
  margin-bottom: 20px;
  padding: 20px;
  margin-left: 20px;
  font-size: 1.5em;
  color: white;
  background: #022840;
  border-radius: 1em;
}

.ads {
  padding: 20px;
  background: #f2f2f2;
}

.adBlock {
  display: flex;
  flex-direction: row;
  align-items: space-evenly;
  justify-content: space-evenly;
  flex-wrap: wrap;
}

.ads h2 {
  color: #595959;
}

.ad {
  width: 30vw;
  height: 16vw;
  min-width: 150px;
  background: #595959;
  border-radius: 12px;
  margin-bottom: 5vw;
  margin-right: 5vw;
}

footer {
  height: 40vh;
  background: #1d1d1d;
}
