html {
  min-height: 100%;
  height: 100%;
  background-color: #858289;
  font-size: 15px;
  font-family: Arial;
}

body {
  min-height: 100%;
  height: 100%;
  margin: 0;
}

.wrapper {
  background-color: #858289;
  padding: 2rem;
  box-sizing: border-box;
  min-height: 100%;
  height: 100%;
}

.screen-wrapper {
  display: grid;
  margin-bottom: rem4;
  grid-template-columns: 5rem auto 5rem;
  grid-template-rows: 5rem auto 5rem;
  gap: 0;
  min-height: 100%;
  margin-bottom: 4rem;
}

.bezel-bottom {
  grid-column: 1 / 4;
}

.bezel-top {
  border-bottom: 0.5rem solid #444444;
}

.bezel-top-left {
  box-shadow: 0 1rem 0 0 #242424;
  position: relative;
  z-index: 2;
}

.bezel-top-right {
  box-shadow: 0 1rem 0 0 #242424;
  position: relative;
  z-index: 2;
}

.bezel-top-center {
  box-shadow: 0 1.5rem 0 0 #242424;
  position: relative;
  z-index: 1;
}

.bezel-side-left {
  box-shadow: 1.5rem 1.5rem 0 0 #242424;
  border-right: 0.5rem solid #444444;
  position: relative;
  z-index: 1;
}

.bezel-side-right {
  box-shadow: -1rem 1rem 0 0 #242424;
  border-left: 0.5rem solid #444444;
  position: relative;
  z-index: 1;
}

.bezel-bottom {
  z-index: 2;
  border-top: 0.5rem solid #646464;
}

.bezel {
  background-color: #515151;
}

.content {
  background-color: #424d49;
  box-shadow: 0 0 5rem 5rem rgba(0,0,0,0.2) inset;
  padding: 5rem;
  color: #66cc66;
  font-size: 1.5rem;
}

.content a,
.content a:visited {
  color: #66cc66;
}

.menu-wrapper {
  height: 4.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.screen-button {
  font-size: 1.5rem;
  line-height: 3.1rem;
  text-decoration: none;
  height: 70%;
  color: #aaa;
  transition: color 0.5s;
  border: 0.1rem solid #242424;
  text-align: center;
  border-radius: 1rem;
  padding: 0 1rem;
  display: inline-block;
  box-shadow: 0 0.15rem 0.15rem #777 inset,
    0rem -0.15rem 0.15rem #444 inset,
    0 0.15rem 0.15rem #777,
    0rem -0.15rem 0.15rem #444;
}

.screen-button:hover {
  color: #ccc;
}

.landing {
  text-align: center;
}

.logo-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.logo {
  max-width: 15rem;
}

.screenshot-wrapper {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
}

.screenshot {
  width: 20%;
  border-radius: 1rem;
}

.contacts {
  padding-top: 2rem
}

@media (max-width: 800px) {
  .screenshot-wrapper {
    flex-direction: column;
    gap: 2rem;
  }

  .screenshot {
    width: 100%;
  }
}
