* {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-family: 'Montserrat', sans-serif;
}

.default {
    --bg-1: #222e4e;
    --bg-2: #19243f;
    --blue: #8dd2e4;
    --grey: #888888;
}

body {
    background-color: #222e4e;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    color: white;
}

.price-box {
    margin: 45px auto 0;
    width: fit-content;
    padding: 14px 28px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    color: white;
}

.price-box span {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    font-weight: 400;
}

a {
    text-decoration: none;
    color: inherit;
}

.grid-div-1 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

header {
    width: 100%;
}
#header-wrapper {
    display: flex;
}
#logo, #nav, #dash {
    display: flex;
    align-items: center;
}

.main-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 0px;
}
.feature-grid {
    height: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
}
.feature-grid div {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
    border-radius: .25rem;

}

.feature-grid div {
    background-color: rgba(34, 46, 78, 0.65);
    background-size: 30px 30px;

    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
}

section#landing, section#notify, section#io, section#fill {
    padding: 20px;
    height: fit-content;
}

#landing-wrapper, #notify-wrapper, #io-wrapper{
    height: fit-content;
}

.section-header {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 15px;
}

.section-info {
    display: flex;
    flex-direction: column;
    max-height: 100%;
}

.section-info div{
    display: flex;
    flex-direction: column;
    padding-bottom: 20px;
    font-size: 16px;
}

.section-bold {
    font-size: 20px;
    font-weight: 700;
}

#products-img {
        width: 100%;
}

#landing-footer {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
}

#footer {
    height: 100px;
    background-color: var(--bg-1);
}
#footer-wrapper {
    display: flex;
    justify-content: space-around;
}
#footer-wrapper div {
    font-size: 15px;
    padding: 10px;
    display: flex;
    flex-direction: column;
}

.secondary {
    opacity: 100%;
    color: #adbec9;
}

@media only screen and (max-width: 600px) {
    header {
        height: 70px;
        font-size: 4vw;
    }
    #nav, #dash {
        display: none;
    }
    #header-wrapper {
        justify-content: center;
        align-items: center;
        padding: 5%;
    }
    #logo img {
        width: 35px;
        height: 39px;
    }
    .main-grid, .section-content {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(2, 1fr);
        grid-column-gap: 20px;
        grid-row-gap: 0px;
    }
    #landing .main-grid div {
        height: 40vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 5%;
        padding-top: 0;
        padding-bottom: 0;
    }
    #landing-wrapper > div > div.grid-div-1 > span:nth-child(1) {
        font-size: 10vw;
    }
    #landing-wrapper > div > div.grid-div-1 > span:nth-child(2) {
        font-size: 5vw;
    }
    #landing-footer {
        font-size: 5vw;
    }
    .section-header {
        font-size: 10vw;
    }
    .section-content {
        grid-template-rows: repeat(2, 0fr);
    }
    .section-content  .grid-div-1{
        height: fit-content;
        margin-bottom: 15px;
    }
    .section-content  .grid-div-2 {
        height: fit-content;
    }
    #notify-wrapper > div > span:nth-child(2) {
        font-size: 5vw;
    }
    .feature-grid div {
    background-color: transparent;
    background-image: none;
    }
    svg {
        width: 30px;
        padding-bottom: 5px;
    }
}

@media only screen and (min-width: 600px) {}

@media only screen and (min-width: 768px) {}

@media only screen and (min-width: 992px) {
    #header-wrapper {
        justify-content: space-between;
        padding-left: 40px;
        padding-right: 40px;
    }
    #nav {
        width: 25%;
        justify-content: space-around;
    }
    .main-grid div {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    #products-img {
        width: 700px;
    }
    #landing {
        height: 85vh !important;
    }
    #notify, #io, #fill {
        height: 125vh !important;
    }
    #landing-wrapper > div.main-grid > div.grid-div-1 span{
        width: 75%;
    }
    #landing-wrapper > div.main-grid > div.grid-div-1 > span:nth-child(2) {
        font-size: 20px;
    }
    #landing-wrapper > div.main-grid > div.grid-div-1 > span:nth-child(1) {
        font-size: 68px;
    }
    .section-header > span:nth-child(1) {
        font-size: 48px;
    }
    .section-content {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 1fr;
        grid-column-gap: 20px;
        grid-row-gap: 20px;
    }
    .section-content div {
        height: 40vh;
    }
    .section-bold {
        font-weight: 500;
        font-size: 35px;
    }
    .section-info div {
        padding-bottom: 55px;
    }
    svg {
        width: 30px;
        padding-bottom: 5px;
    }
}

@media only screen and (min-width: 1200px) {}

#footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 80px;
    background: rgba(0, 0, 0, 0.15);
}
