@import url('https://fonts.googleapis.com/css2?family=Karla:ital,wght@0,200..800;1,200..800&display=swap');
/* // <uniquifier>: Use a unique and descriptive class name */
/* // <weight>: Use a value from 200 to 800 */

/* 
.karla-<uniquifier> {
  font-family: "Karla", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
*/

.karla-light {
  font-family: "Karla", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}
.karla-medium {
  font-family: "Karla", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
.karla-semibold {
  font-family: "Karla", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}
.karla-bold {
  font-family: "Karla", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}
.karla-extrabold {
  font-family: "Karla", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
}

* {
  box-sizing: border-box;
  font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Helvetica Neue",  Arial, sans-serif;
  /* font-family: "karla-semibold", sans-serif; */
  margin: auto;
}

html, body {
  height: 100vh;
}

body {
  background-color: #242628;
  background-image: url(./assets/coffee.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  /* background-position-x: center; */
  /* background-position-y: -150px; */
  background-position: center center;
  /* background-origin: padding-box; */
}


.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  /* padding: 165px 0 124px; */
  width: 100%;
  /* margin: auto; */
  /* border: #fbab40; */
  height: 100vh;
}

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

.header {
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0px;
  font-style: normal;
  max-width: 70ch;
  margin: 50px auto 0 auto;
}

.header > h1 {
  font-style: normal;
  font-weight: 600;
  font-size: 48px;
  line-height: 150%;
  display: flex;
  align-items: center;
  text-align: center;
  color: #ffffff;
}

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

.p1 {
  color: #753e05;
}

.p2 {
  color: #ab5700;
}

.header a {
  color: #ffffff;
  text-decoration: underline;
}
.header a:hover {
  color: #ff9e40;
}

.options {
  display: flex;
  flex-direction: row;
}

.options > a {
  color: #ffffff;
  text-decoration: underline;
  margin: 0px 8px;
  font-weight: 400;
  font-size: 24px;
  line-height: 150%;
}

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

.logo {
  margin-top: 75px;
}

.logo > img {
  width: 160px;
  height: 64px;
}


@media screen and (max-width: 1024px) {
    .container {
        background-size: contain;
        background-position-y: center;
    }
}

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

.container{
    background-size: contain;
    background-position-y: center;
    }
  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;
  }
}
