@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400&display=swap");

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #CBCBCB;
}

::-webkit-scrollbar-thumb {
  background: #E2E2E2;
}

::-webkit-scrollbar-thumb:hover {
  background: #D2D2D2;
}

:root {
  --primary-color: #3a4052;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Open Sans", sans-serif;
  line-height: 1.5;
}

h1 {
  font-weight: 300;
  font-size: 60px;
  line-height: 1.2;
  margin-bottom: 15px;
}

svg {
  transform: scale(2.5);
  margin: 20px;
}

.showcase {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--primary-color) url("./media/showcase-cover.png") no-repeat center center/cover;
}

.video-container video {
  min-width: 100%;
  min-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.video-container:after {
  content: "";
  z-index: 1;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
}

.content {
  z-index: 2;
}

.btn {
  display: inline-block;
  padding: 10px 30px;
  background: var(--primary-color);
  color: #fff;
  border-radius: 5px;
  border: solid #fff 1px;
  margin-top: 25px;
  opacity: 0.7;
}

.btn:hover {
  transform: scale(0.98);
}

.img {
  max-width: 111px;
  opacity: 0.4;
  transform: scale(1);
}

.img:hover {
  opacity: 0.8;
  transform: scale(1.3);
}

#about {
  padding: 40px;
  text-align: center;
}

#about p {
  font-size: 1.2rem;
  word-break: break-word;
  max-width: 1000px;
  margin: auto;
}

#about p:last-of-type {
  padding-top: 1rem;
}

#about h2 {
  margin: 30px 0;
  color: var(--primary-color);
}

.social a {
  margin: 0 5px;
  text-decoration: none;
  color: var(--primary-color);
}

/* Portrait and Landscape */
@media only screen and (min-device-width: 300px) and (max-device-width: 812px) {
  #about {
    margin-top: -10vh;
    font-size: .8rem;
    word-break: break-word;
  }
}