html {
  width: 100%;
  height: 100%;
  font-size: 10px;
  min-height: 100vh;
}

body {
  width: 100%;
  height: 100%;
}

h1,
p {
  font-family: "Quicksand", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  line-height: 4rem;

  font-size: 4rem;
  color: rgb(7, 49, 71);
}

.background {
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  background-color: rgb(218, 226, 237);

  overflow: auto;
  padding: 3rem;
}

.title-box {
  width: max-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 10rem;
  margin-bottom: 4rem;

  padding: 1rem;
  /* box-shadow: 0 0 1px 3px rgba(202, 202, 202, 0.376); */
  /* background-color: rgba(255, 255, 255, 0.342); */
}

.blurb {
  font-size: 3rem;
  line-height: normal;
  width: 98%;
  max-width: 100rem;
  /* min-width: 50rem; */
  margin-bottom: 6rem;

  @media (max-width: 50rem) {
    font-size: 2rem;
  }
}

.layout {
  position: relative;
  width: 100%;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  .ocular-title {
    height: calc(30vw);
    max-height: 30rem;
    aspect-ratio: auto;
  }

  .br-logo {
    width: 7.5rem;
    height: 7.5rem;
  }
}

.title {
  display: flex;
  align-items: center;

  h1 {
    text-shadow: 1px 1px rgba(0, 0, 0, 0.186);
  }
}

.screenshots {
  position: relative;
  display: grid;
  width: 85%;
  display: flex;
  flex-wrap: wrap;
  max-width: 180rem;
  flex-direction: row;
  gap: 4rem;
  justify-content: center;
  justify-items: center;
  align-items: center;

  img {
    display: flex;
    border-radius: 0.5rem;
    aspect-ratio: 16/9;
    max-width: 50rem;
    box-shadow: 0 0 10px 3px rgba(16, 73, 51, 0.357);
    width: 100%;
    height: 100%;
  }
}
