:root {
  --bg-color-darker: #2d2630;
  --bg-color-brighter: #463d49;
  --accent-color: #f2a67d;
  --text-color-default: #c7dbd5;
  --text-color-darker: #6ba090;
}

@font-face {
  font-family: "Silkscreen";
  src: url("./Silkscreen-Regular.ttf") format("truetype");
}

@font-face {
  font-family: "Silkscreen";
  src: url("./Silkscreen-Bold.ttf") format("truetype");
  font-weight: bold;
}

body,
html {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: "Silkscreen";
  font-size: 18px;
  color: var(--text-color-default);
}

@media screen and (min-width: 2500px) {
  body,
  html {
    font-size: 24px;
  }
}

body {
  background-image: linear-gradient(
    to bottom,
    var(--bg-color-darker) 50%,
    var(--bg-color-brighter) 50%
  );
  background-size: 100% 0.5rem;
}

a {
  color: var(--text-color-darker);
}

.logo {
  width: 100%;
  max-width: 100vw;
  min-height: 10rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo > img {
  max-width: 100%;
}

h1,
h2,
h3 {
  width: 100%;
  text-align: center;
}

h1 {
  color: var(--accent-color);
  font-size: 2rem;
}

h2 {
  font-size: 1.8rem;
}

h3 {
  font-size: 1.6rem;
}

.site-wrap {
  display: flex;
  justify-content: space-between;
  height: 100%;
  width: 100%;
}

.info {
  width: 100%;
  font-size: 1.3rem;
  text-align: center;
}

.content-wrap {
  width: 65%;
  padding: 0 5rem 5rem 5rem;
  margin: 0 5rem;
  background-color: rgba(0, 0, 0, 0.6);
  max-height: 100%;
  overflow-y: scroll;
}

.lang-select {
  height: 1.5rem;
  margin-top: 1rem;
  display: flex;
  justify-content: flex-end;
}

.lang-select > a {
  height: 100%;
  margin-left: 0.5rem;
}

.lang-flag {
  image-rendering: pixelated;
  height: 100%;
}

@media screen and (max-width: 800px) {
  .content-wrap {
    width: 100%;
    padding: 0 1rem 1rem 1rem;
    margin: 0;
  }

  .pixel-pot,
  .pixel-mug {
    display: none;
  }
}

@media screen and (min-width: 801px) and (orientation: portrait) {
  .content-wrap {
    width: 70%;
    padding: 0 1rem 1rem 1rem;
    margin: 0;
  }

  .pixel-pot,
  .pixel-mug {
    width: 10%;
  }
}

.osm-frame {
  height: 15rem;
  width: 100%;
}

.pixel-pot,
.pixel-mug {
  image-rendering: pixelated;
  align-self: flex-end;
  padding: 0 2rem;
}

.pixel-pot {
  width: 15%;
}

.pixel-mug {
  width: 10%;
}

#socials-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 2rem;
  height: 2rem;

  & > a {
    text-decoration: none;
    display: flex;
    align-items: center;

    & > img {
      max-width: 1.5rem;
      margin-right: 0.5rem;
    }
  }
}
