@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400&display=swap");

:root {
  --primary-color: #3a4052;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "open sans", sans-serif;
  line-height: 1.5;
}

a {
  text-decoration: none;
  color: var(--primary-color);
}

h1 {
  font-weight: 300;
  font-size: 60px;
  line-height: 1.2;
  margin-bottom: 15px;
}

.showcase {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  color: #ffffff;
}

.video-head {
  position: absolute;
  color: #ffffff;
  min-height: 70px;
  z-index: 10;
  padding: 1rem;
  margin-left: 60%;
}

.video-head .highlight,
.video-head .current a {
  color: #ff6600;
  font-weight: bold;
}

.video-head a:hover {
  color: #cccccc;
  font-weight: bold;
}

.video-head a {
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 16px;
}

.video-head li {
  display: inline;
  padding: 0 20px 0 20px;
}

.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--primary-color) url("video/cover.jpg") no-repeat center
    center/cover;
  z-index: 1;
}

.video-container video {
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.video-container:after {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.content {
  z-index: 10;
}

.btn {
  display: inline-block;
  padding: 10px 30px;
  background: var(--primary-color);
  color: #ffffff;
  border: 1px #ffffff solid;
  border-radius: 5px;
  margin-top: 25px;
  opacity: 0.7;
}

.btn:hover {
  transform: scale(0.97);
}

ul {
  list-style: none;
}

.big-btn {
  padding: 3rem;
}

#about {
  padding: 8rem 1rem 2rem 1rem;
  text-align: center;
}

#about p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: auto;
}

.video-group {
  display: grid;
  grid-template-columns: repeat(4, 10rem);
  grid-gap: 1rem;
  justify-content: center;
  align-items: top;
}

.shad {
  filter: drop-shadow(8px 6px 4px #999999);
}

.stills {
  padding: 3rem;
  text-align: center;
}

.photos {
  display: grid;
  grid-gap: 2rem;
  padding: 3rem;
  justify-content: center;
  align-items: center;
  overflow-x: hidden;
}

#one {
  grid-column: 1;
  grid-row: 1;
  filter: drop-shadow(8px 8px 10px #999999);
}

#two {
  grid-column: 2;
  grid-row: 1;
  filter: drop-shadow(8px 8px 10px #999999);
}

#three,
#four,
#five,
#six,
#seven,
#eight,
#nine,
#ten,
#eleven,
#twelve {
  filter: drop-shadow(8px 8px 10px #999999);
}

footer {
  position: relative;
  text-align: center;
  padding-bottom: 3rem;
}

@media (max-width: 820px) {
  .video-group {
    display: grid;
    grid-template-columns: repeat(1, auto);
    grid-row-gap: 3rem;
    text-align: center;
    justify-content: center;
    align-items: center;
  }

  .stills {
    padding: 5%;
  }

  .photos {
    display: grid;
    grid-gap: 2rem;
    padding: none;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }

  #two {
    grid-column: 1;
    grid-row: 1;
  }
}
