svg {
  filter: drop-shadow(2px 0px 3px rgb(0 0 0));
}

* {
  box-sizing: border-box;
  font-family: Noto+Serif+SC, Georgia, 'Source Serif Pro' 'Times New Roman', serif;
  margin: auto;
  text-underline-offset: 3px;
}

em {
  font-style: normal; 
  color: #fbab40;
}

.bg-image {
  position: absolute;
  bottom: -88%;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 165px 0 124px;
  width: 100%;
  margin: auto;
  border: #fbab40;
  height: 100vh;
  background-color: #242628;
  background-image: url(./assets/background.svg);
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: -40%;
  background-origin: padding-box;
}

.header h3 {
  text-align: center;
  color: #fcef62;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  margin: 0;
  line-height: 36px;
}

.header {
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0px;
  font-style: normal;
}

.header > h1 {
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 120%;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #ffffff;
  text-shadow: 3px 0px 4px #000
}

.header h2 {
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  margin: 0;
  line-height: 36px;
  color: #ffffff;
}


.header > p {
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 150%;
  text-align: center;
  color: #ffffff;
  flex-grow: 0;
  margin: 16px 0px;
}

.option {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.options {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-content: center;
  margin-block: 10px;
}

.options > a {
  color: #FFFFFF;
  margin: 0px 8px;
  font-weight: 400;
  font-size: 24px;
  line-height: 120%;
  text-shadow: 2px 0px 3px #000;
  text-decoration: none;
}

.options > a:hover {
	text-decoration: underline; 
}

.options > a:first-of-type {
  margin-right: 30px;
}

.options > img {
  width: 60px;
  height: 50px;
}


@media screen and (max-width: 600px) {

.container{
    padding-left: 5px;
    padding-right: 5px;
    }
  pre {
    font-size: 0.8rem;
    padding: 8px 12px;
    width: 100%;
  }

  body {
    width: 100vw;
  }

  .header img {
    margin-left: 0;
  }

  .installation-steps {
    width: 100%;
    box-sizing: border-box;
  }

  h1 {
    font-size: 1.6rem;
  }

  ol {
    padding-left: 20px;
  }

  li {
    margin-bottom: 5px;
  }
}


@media screen and (max-width: 525px) {

  .header{
    margin-top: 140px;
  }
  .container{
    background-position-y: 3%;
    background-image: url(./assets/background.svg);
    padding-inline: 5px;
    padding-top: 400px;
    padding-bottom: 600px;
    }
  .option{
    flex-direction: column;
    font-size: 1.2rem;
  }
}

