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

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

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0px 124px 0px 124px;
    width: 50%;
    margin: auto;
    height: 100vh;
    background-color: #2C3D5B;
    filter: opacity(0.9);
    border-radius: 8px;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 165px 0 124px;
    width: 100%;
    margin: auto;
    height: 100vh;
    background-color: #242628;
    background-image: url(./assets/beautiful-strawberry-garden-sunrise-doi-ang-khang-chiang-mai-thailand.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: -100px;
}

.header h3 {
    text-align: center;
    color: #bda578;
    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;
}

.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: 18px;
    line-height: 150%;
    text-align: center;
    color: #ffffff;
    flex-grow: 0;
    margin: 16px 0px;
}

.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: 30px;
}

.logo>img {
    width: 256px;
    height: 256px;
}

.learn-more>a>button {
    background: #bda578;
    border-radius: 4px;
    border: none;
    width: 180px;
    margin-top: 0px;
    height: 55px;
    color: #242628;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    background: rgba(189, 165, 117, 1);
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.25);
    cursor: pointer;
}

@media screen and (max-width: 1024px) {
    .container {
        padding: 16px 16px 16px 16px;
        width: 95%;
    }
}

@media screen and (max-width: 600px) {
    .container {
        background-size: contain;
        background-position-y: center;
    }
    body {
        background-size: cover;
        background-position: center center;
    }
    pre {
        font-size: 0.8rem;
        padding: 8px 12px;
        width: 100%;
    }
    body {
        width: 100vw;
    }
    .header img {
        margin-left: 0;
    }
    .logo>img {
        width: 128px;
        height: 128px;
    }
    .logo {
        margin-top: 0px;
    }
    .installation-steps {
        width: 100%;
        box-sizing: border-box;
    }
    h1 {
        font-size: 1.6rem;
    }
    .header h1 {
        font-size: 1.7rem;
    }
    .header h3 {
        font-size: 1.2rem;
    }
    .header p {
        font-size: 0.8rem;
    }
    ol {
        padding-left: 20px;
    }
    li {
        margin-bottom: 5px;
    }
}