:root{
    color-scheme: light dark;
    --blue: light-dark(#0015d6, #0015d6);
    --red: light-dark(#cf0015, #cf0015);
    --black: light-dark(#0D0D0D, #0D0D0D);
    --gold: light-dark(#ffdd1d, #ffdd1d);
    --mutedgold: light-dark(#c9ab01, #c9ab01);
    --gray: light-dark(#BDBDBD, #BDBDBD);
    --white: light-dark(#FFFFFF, #FFFFFF);
    --dark-blue: light-dark(#000009, #000009);
    scroll-behavior: smooth;
    scroll-padding-top: 200px;
}

button{
    width: 100%;
    background-color: gold;
    font-size: 2rem;
    border-radius: 50px;
    border-width: 4px;
}

@keyframes glow {
    0% {
        color: var(--gold);
    }
    50% {
        box-shadow: 0 0 10px 5px rgba(from var(--gold) r g b / 0.7);
        color: var(--white);
    }
    100% {
        color: var(--gold); 
    }
}

:target {
    animation: glow 2.5s ease-out; /* 'glow' is the animation name, 1.5s is the duration */
}

a{
    color: var(--mutedgold);
}

#footer-img{
    max-width: 50%;
}

.flex{
    display: flex;
}

.column{
    flex-direction: column;
}

.center{
    align-items: center;
}

.bold{
    font-weight: bold;
}

.italics{
    font-style: italic;
}

.underlined{
    text-decoration: underline;
}

.form {
    background-color: var(--black);
    padding: 10px;
    display: flex;
    flex-direction: column;
    position: relative; 
    width: 70%;
    height: 100%;
    margin: 50px auto;
    border: 5px solid var(--gold); 
    border-radius: 25px;
}

/*.form::before {
    content: "";
    display: block;
    position: absolute;
    top: -15px; 
    left: -15px; 
    width: calc(100% + 30px); 
    height: calc(100% + 30px);
    background-color: var(--black);
    z-index: -2; 
    border-radius: 25px;
}

.form::after {
    content: "";
    display: block;
    position: absolute;     
    top: -5px;
    left: -5px;
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    background-color: var(--gold);
    z-index: -1; 
    border-radius: 25px;
}*/

.accent{
    color: var(--gold);
    /*background-color: var(--black);*/
}

.blue{
    color: var(--blue);

}

.red{
    color: var(--red);
}

body{
    margin: 0;
    font-family:Arial, Helvetica, sans-serif;
    height: 100%;
    width: 100%;
    color: var(--white);
    overflow-x: hidden;
    background-color: transparent;
}

a{
    align-content: center;
    transition: all 0.5s;
}

.navbar{
    background-image: linear-gradient(to bottom, rgba(0,0,0,1) 30%, rgba(0,0,0,0)100%);
    width: 100%;
    height: 10dvh;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    color: white;
    top: 0;
    z-index: 10;
    position: sticky;
    top: 0;
    pointer-events: none;
}

.page-title{
    text-align: center;
    background-color: rgba(0,0,0,0.6);
    font-size: 5rem;
    margin-top: 0;
    margin-bottom: 2.5%;
}

@keyframes display{
    from{
        display: none;
    }
    to{
        display: block;
    }
}

#home-blurb{
    display: flex;
    align-items: center;
    flex-direction: column;
}

@media(orientation: landscape){
    .top-content{
        height: 90vh;
    }
    #home-blurb{
        justify-content: start;
    }
    .blurb{
        width: 60%;
        color: aliceblue;
        overflow-y: hidden;
        background-color: var(--black);
        border-radius: 10%;
        padding: 2%;
        height: 100%;
        font-size: 1.5rem;
    }
    
    .blurb2{
        width: 40%;
        color: aliceblue;
        height: 100%;
    }
    .blurb-holder{
        display: flex;
        flex-direction: row;
        height: 70%;
    }
}

@media(orientation: portrait){
    #home-blurb{
        justify-content: space-between;
    }
    .blurb-holder{
        display: flex;
        flex-direction: column;
        width: 100%;
        align-items: center;
    }
    .blurb{
        margin: 0;
        padding: 0%;
        padding-bottom: 0;
        font-size: 1rem;
        color: aliceblue;
        height: fit-content;
        background-color: var(--black);
        border-radius: 50px;
        padding: 4%;
        padding-top: 1%;
        padding-bottom: 1%;
        font-size: 1.5rem;
    }
    
    .blurb2{
        width: 95%;
        margin: 0;
        padding-top: 10px;
        padding-bottom: 0;
        font-size: 3em;
        color: aliceblue;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 50%;
    }

    #footer-img{
        max-width: 30%;
    }
}

button{
    height: 100%;
    background-color: var(--white);
    color: aliceblue;
    padding: 20px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    border-radius: 0%;
    box-shadow: 10 10 15 150 red;
    border-radius: 25px;
    color: var(--black);
}

button:hover{
    cursor: pointer;
    background-color: var(--gold);
    color: black;
}

button:active{
    cursor: pointer;
    background-color: var(--mutedgold);
    color: black;
}

.call-link{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--white);
    color: aliceblue;
    font-size: 1em;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    border-radius: 0%;
    box-shadow: 10 10 15 150 red;
    border-radius: 25px;
    color: var(--black);
    padding: 5%;
    font-size: 2rem;
    text-decoration: none;
    margin: 5% 0px 0px;
}

.call-link:hover{
    cursor: pointer;
    background-color: var(--gold);
    color: black;
}

.call-link:active{
    cursor: pointer;
    background-color: var(--mutedgold);
    color: black;
}

#background{
    position: fixed;
    top: 0;
    left: 0;
    z-index: -6;
    background-image: url('/msbackground.webp');
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
}

#info-background{
    position: fixed;
    top: 0;
    left: 0;
    z-index: -6;
    background-color: rgba(0,10,50, 1);
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
}

#background-mask{
    position: fixed;
    top: 0;
    left: 0;
    z-index: -5;
    background-color: rgba(0,0,0,0.8);
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
}

.background{
    background-image: url('/pexels-goumbik-574071.webp');
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: top center;
    z-index: -5;
    filter: brightness(0.3);
}

.footer{
    width: 100%;
    background-color: black;
    color: aliceblue;
    font-size: 1rem;
}

.footer a{
    color: aliceblue;
}

.link-holder{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

#copyright{
    margin: 0;
    margin-top: 50px;
    width: 100%;
    text-align: center;
    padding-bottom: 20px;
}

.information{
    display: flex;
    background-color: var(--black);
    color: var(--white);
    margin: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    position: relative;
}

.section{
    height: 40vh;
    scroll-margin-top: 10vh;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 2rem;
    margin: 6%;
    padding: 1%;
    color: white;
    text-decoration: none;
    position: relative;
    z-index: 5;
    top: 0vh;
    padding: 1%;
    user-select: none;
    transition: all 0.5s;
    max-width: 100%;
    box-sizing: border-box;
}

.section::before.disabled{
    display: block;
    position: absolute;
    background-color: #0015d6;
    height: 100%;
    width: 100%;
    border-radius: 50px;
    padding: 3%;
    left: -1.5%;
    top: -1.5%;
    z-index: -1;
    overflow: hidden;
}

.section:hover{
    top: -2vh;
    color: var(--white);
}

.section:hover .section-background{
    display: block;
    /*background-color: var(--blue);*/
    height: 95%;
    width: 95%;
    position: absolute;
    top: 10%;
    z-index: 0;
    transform: rotate(2deg);
    filter: blur(3rem);
    z-index: -10;
    border: solid var(--blue) 2px;
}

.section-background.disabled{
    display: block;
    background-color: #cf0015;
    height: 0%;
    width: 0%;
    position: absolute;
    top: 10%;
    z-index: 0;
    transform: rotate(2deg);
    filter: blur(2rem);
    z-index: -10;
    transition: all 0.5s;
}

.section-background{
    display: block;
    /*background-color: var(--blue);*/
    background-image: radial-gradient(var(--blue), var(--dark-blue));
    border: solid var(--blue) 5px;
    height: 100%;
    width: 100%;
    padding: 3%;
    border-radius: 50px;
    position: absolute;
    top: 0%;
    z-index: 0;
    transform: rotate(-2deg);
    z-index: -10;
    left: -3%;
    transition: all 0.5s;
}

.section-background.reverse{
    transform: rotate(2deg);

}

.section-img{
    max-height: 100%; 
    height: fit-content;
    width: 35%; 
    object-fit: cover; 
    float: right;
    background-color: white;
    border-radius: 10px;
    border: solid var(--gold) 4px;
}

.section-img.left{
    float: left;
}

.section-head{
    font-size: 2.5rem;
    margin: 2% 2%;
    color: var(--gold);
    text-wrap: wrap;
}

#logo-div{
    height: 100%;
    width: fit-content;
}

.blurb-img{
    max-height: 100%;
    top: 10%;
    position: relative;
    max-width: 50%;
    object-fit: contain;
}

.dropdowns{
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.dropdown{
    display: flex;
    flex-direction: column;
    width: 90%;
    align-items: center;
}

.dropdown-head{
    display: flex;
    background-color: var(--white);
    border-radius: 25px;
    padding: 1%;
    padding-left: 5%;
    font-size: 2rem;
    width: 95%;
    height: min(10vh, 100px);
    border: solid var(--gray) 2px;
    align-items: center;
    transition: all 0.5s;
    color: var(--black);
    background-image: linear-gradient(to bottom left,rgba(0,0,0,0) 80% , var(--gold));
    box-shadow: 0 2px 5px rgba(var(--blue-rgb), 1);
}

.dropdown-head:hover{
    background-color: var(--gold);
    border: solid var(--blue) 2px;
    color: var(--black);
}

.dropdown-head:active{
    transition: none;
    background-color: var(--mutedgold);
}

.dropdown-head:hover{
    cursor: pointer;
}

.dropdown-body{
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1.5rem;
    margin: 2%;
    transition: max-height 0.75s ease;
    overflow: hidden;
    max-height: 0vh;
    margin-top: 0%;
    background-color: var(--white);
    border-radius: 10px;
    padding: 5%;
    padding-top: 0%;
    padding-bottom: 0%;
    color: var(--black);
    width: 80%;
    justify-self: center;
    margin: 10px;
    background-image: linear-gradient(to bottom left,rgba(0,0,0,0) 80% , var(--gold));
}

.dropdown-head.clicked + .dropdown-body{
    border: solid var(--gray) 2px;
}

a:hover{
    color: var(--gold);
}

a:active{
    color: var(--mutedgold);
    transition: none;
}

.dropdown-head::after {
    content: '\25BC';
    font-size: 2rem;
    margin-left: auto;
    transition: transform 1s;
}

.dropdown-head.clicked::after {
    transform: rotate(180deg); 
}

.footer-content{
    font-size: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hamburger-container{
    height: 100%;
    width: 50px;
    position: sticky;
    z-index: 5;
    top: 0;
    pointer-events: all;
    cursor: pointer;
    padding-right: 50px;
    user-select: none;
    display: flex;
    justify-content: left;
}

.hamburger::before{
    content: "";
    display: block;
    background-color: white;
    width: 100%;
    height: 100%;
    position: absolute;
    top: -200%;
    left: 0%;
    transition: all 0.5s;
    border-radius: 100px;
}

.hamburger{
    background-color: white;
    width: 60%;
    height: 10%;
    position: absolute;
    top: calc(50% - 10%);
    right: 0px;
    transition: all 0.5s;
    border-radius: 100px;
    justify-self: anchor-center;
}

.hamburger::after{
    content: "";
    display: block;
    background-color: white;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 200%;
    left: 0%;
    transition: all 0.5s;
    border-radius: 100px;
}

.hamburger-container.clicked{

    .navigation-div{
        left: 0px;
    }

    .hamburger::before{
        background-color: red;
        top: 0%;
        transform: rotate(90deg);
    }
    
    .hamburger{
        background-color: red;
        transform: rotate(45deg);
    }
    
    .hamburger::after{
        background-color: red;
        top: 0%;
        transform: rotate(90deg);
    }

}

.navigation-div{
    position: fixed;
    box-sizing: border-box;
    padding-top: 10vh;
    height: 100%;
    width: 100%;
    top: 0;
    background-color: #0D0D0D;
    z-index: -1;
    display: block;
    justify-content: flex-start;
    flex-direction: column;
    align-items: center;
    transition: all 0.5s;
    left: 100%;
    overflow: auto;
    pointer-events: all;
}

.navigation-div a{
    font-size: 3rem;
    color: white;
    text-decoration: double;
    user-select: none;
    margin: 1ch 0ch;
    @media(orientation: portrait){
        font-size: 2rem;
    }
}

.navigation-div a:hover{
    color: var(--gold);
}

.navigation-div a:active{
    color: var(--mutedgold);
    transition: none;
}

.navigation-div p{
    font-size: 3rem;
    color: white;
    text-decoration: double;
    user-select: none;
    margin: 1ch 0ch;
    transition: all 0.5s;
    @media(orientation: portrait){
        font-size: 2rem;
    }
}

.navigation-div p:hover{
    color: var(--gold);
}

.navigation-div p:active{
    color: var(--mutedgold);
    transition: none;
}

.example{
    width: min(90vw, 1200px);
    height: min(60vw, 800px);
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    position: relative;
}

.example.mobile{
    width: min(60vw, 800px);
    height: min(60vw, 800px);
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    position: relative;
}

.example .example-site{
    width: 77.6%;
    height: 65%;
    z-index: 2;
    position: absolute;
    left: 11.8%;
    top: 10%;
    border: none;
    scrollbar-width: none;
    
}

.example.mobile .example-site{
    width: 39.5%;
    height: 80%;
    z-index: 2;
    position: absolute;
    left: 30%;
    top: 10%;
    border: none;
    scrollbar-width: none;
    scrollbar-color: blue;
    scrollbar-width: none;
}

.example .laptop{
    display: block;
}

.example .phone{
    display: none;
}

.example.mobile .laptop{
    display: none;
}

.example.mobile .phone{
    display: block;
}

.example img{
    height: 100%;
    width: 100%;
    position: absolute;
    object-fit: fill;
    z-index: 1;
}

.examples{
    display: flex;
}

.orientation-buttons{
    display: flex; 
    justify-content: space-between;
}

.sections{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 100%;
}

.info-page-body{
    display: flex;
    width: 100%;
}

.side-action{
    display: flex;
    max-height: 70vh;
    flex-direction: column;
    width: 30%;
    position: sticky;
    top: 10vh;
    background-color: var(--black);
}

.side-action h2{
    font-size: 4rem;
}

.side-action button{
    height: fit-content;
}

.info-page-form {
    background-color: var(--black);
    padding: 10px;
    display: flex;
    flex-direction: column;
    position: relative; 
    width: 30%;
    height: 100%;
    margin: 50px auto;
    border: 5px solid var(--gold); 
    border-radius: 25px;
    position: sticky;
    top: 10vh;
}

#process{
    background-color: var(--black);
    border: inset var(--gold) 1vmin;
    width: 80%;
    justify-self: center;
    margin-bottom: 2%;
    font-size: 1.5rem;
}

#process li{
    border-top: solid var(--gold) 0.5vmin;
    width: 100%;
}

#process p{
    border-top: solid var(--gold) 3px;
    width: 90%;
    padding: 1% 5%;
}

#process h2{
    padding: 0% 5%;
}

.nav-drop-down-button{
    position: relative;
    cursor: pointer;
}

.nav-drop-down-button::after{
    content: "";
    display: block;
    background-color: var(--white);
    position: absolute;
    height: 1.5rem;
    width: 1.5rem;
    overflow: hidden;
    mask-image: url('/mask.webp');
    transform: rotate(135deg);
    left: 115%;
    top: 10%;
    transition: all 0.5s;
}

.nav-drop-down-button.clicked::after{
    transform: rotate(315deg);
    top: 40%;
}

.navigation-drop-down{
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.5s;
    width: 100%;
    align-items: center;
    box-sizing: border-box;
}

.navigation-drop-down a{
    margin: 0.25ch 0ch;
    text-align: center;
}

#contact-blurb{
    margin: 0% 5%;
}

.contact-info{
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    height: 10ch;
    margin: 5% 0%;
}

.contact-info a{
    font-size: 3rem;
    transition: all 0.5s;
    color: var(--white);
}

.contact-info a:hover{
    color: var(--gold);
}

.contact-info a:active{
    color: var(--mutedgold);
}

@media(orientation: landscape){

    #web-design-body{
        font-size: 1.5rem;
        width: 60%;
        margin: auto 5% auto 5%;
        justify-self: center;
    }

    .info-page-body{
        flex-direction: row;
    }

    .orientation-buttons{
        display: none;
    }

    .section{
        width: calc(30% - 4%);
        margin: 2% 0%;
        padding-bottom: 1%;
    }

    .sections{
        flex-direction: row;
    }

    .example{
        width: min(60vw, 1200px);
        height: min(40vw, 800px);
    }
    
    .example.mobile{
        width: min(40vw, 800px);
        height: min(40vw, 800px);
    }
    
}

@media(orientation: portrait){

    #web-design-body{
        font-size: 1.5rem;
        box-sizing: border-box;
        width: 100%;
        padding: 2% 5%;
        justify-self: center;

        h2{
            margin-top: 10%;
        }
    }
    .example.second{
        display: none;
    }

    .info-page-body{
        flex-direction: column;
        justify-content: center;
    }

    .section{
        height: fit-content;
    }

    .sections{
        flex-direction: column;
        padding: 0% 3%;
    }

    .info-page-form {
        width: 90%;
    }

    #process{
        width: calc(100% - 2vmin);
        margin-bottom: 0;
    }

    #side-action{
        display: none;
    }

    .link-holder{
        flex-direction: column-reverse;
        align-items: center;
    }

    #footer-img{
        max-width: min(70%, 40ch);
    }
}

#resource-head{
    margin: 5% 10%;
}

.resource-drop-down{
    margin: 5%;
    overflow: hidden;
    transition: all 0.5s;
    background-color: var(--black);
    border-radius: 50px;
    padding: 0% 5%;

    h2{
        margin: 0;
        box-sizing: border-box;
        padding: 5%;
        text-align: center;
        cursor: pointer;
        transition: all 0.25s;
    }

    h2:hover{
        color: var(--mutedgold);
    }

    .resource-section{
        border: solid 2px var(--gold);
        padding: 2%;
        border-radius: 15px;
        margin-bottom: 20px;
        h3{
            text-align: center;
        }

        img{
            max-height: 25vh;
            max-width: 100%;
            object-fit: contain;
            justify-self: center;
            display: block;
        }
    }

    .download-buttons{
        height: fit-content;
        margin: 5% 0%;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        a{
            background-color: var(--black);
            color: var(--gold);
            padding: 2%;
            border-radius: 50px;
            border: solid 2px var(--gold);
            transition: all 0.25s;
            position: relative;
        }
        a:hover{
            color: var(--mutedgold);
            border: solid 2px var(--mutedgold);
            transform: translateY(-10px);
            box-shadow: var(--gold) 0px 0px 5px 5px;
        }
    }
}

.resource-drop-down.open{
    padding: 0% 5% 5% 5%;
}

.guide{
    background-color: var(--black);
    margin: 5%;
    border-radius: 50px;
    padding: 2% 10%;

    @media(orientation: portrait){
        padding: 2% 5%;
    }

    h1{
        margin: 7% 0%;
        font-size: 3rem;
        color: var(--gold);
    }

    h2{
        text-align: center;
        font-size: 2.5rem;
        color: var(--gold);
        margin: 5%;
    }

    h3{
        font-size: 2rem;
        text-align: center;
        color: var(--gold);
    }

    h4{
        font-size: 1.5rem;
        color: var(--gold);
        text-align: center;
    }

    h5{
        font-size: 1.25rem;
        color: var(--gold);
    }

    .table-of-contents{
        max-width: 70%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 5%;
        justify-self: center;
        border-radius: 25px;
        border: solid 2px var(--gold);
        h2{
            text-wrap: nowrap;
        }

        @media(orientation: portrait){
            max-width: 100%;
            h2{
                text-wrap: wrap;
            }
        }

        a.main{
            font-size: 2rem;
            margin: 5% 0% 2% 0%;
        }
        a.sub{
            font-size: 1.5rem;
            margin: 3% 0% 1% 0%;
        }
        a.sub::before{
            content: " - ";
            display: inline;
            margin-left: 1ch;
        }
        a.subsub{
            font-size: 1.25rem;
            margin: 1.5% 0% 0.5% 0%;
        }
        a.subsub::before{
            content: " - ";
            display: inline;
            margin-left: 3ch;
        }
        a.subsubsub{
            font-size: 1rem;
            margin: 0.5% 0% 0.5% 0%;
        }
        a.subsubsub::before{
            content: " - ";
            display: inline;
            margin-left: 5ch;
        }
    }
}

#pricing-head{
    background-color: var(--black);
    padding: 5%;
    width: 90%;
    border-radius: 50px;
    margin-bottom: 50px;
}

.package-pricing{
    display: flex;
    width: 100%;
    justify-content: space-around;
    align-items: center;
    min-height: 60vh;
    height: fit-content;
    @media(orientation: portrait){
        flex-direction: column;
    }
}

.package{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 60vh;
    color: var(--white);
    text-decoration: none;
    height: fit-content;
    background-color: var(--blue);
    border: solid var(--gold) 2px;
    padding: 2%;
    border-radius: 50px;
    width: 25%;
    background-image: linear-gradient(to top, var(--blue), var(--black));
    
    @media(orientation: portrait){
        width: 80%;
        padding: 5%;
        margin-bottom: 5%;
    }
    
    .divider{
        width: 100%;
        height: 2px;
        background-color: var(--gold);
    }
    .price{
        margin: 0;
        font-size: 1.5rem;
    }
    .monthly-price{
        margin: 0;
        margin-top: 5px;
        font-family: 1.25rem;
    }
    .package-details{
        line-height: 2.5ch;
        br{
            margin-top: 5px;
        }
    }
}

.service-grid{
    display: grid;
    grid-template-columns: repeat(3, minmax(30vh, 1fr));
    grid-auto-rows:  minmax(60vh, auto);
    gap: 2rem;
    @media(orientation: portrait){
        grid-template-columns: repeat(1, minmax(30vh, 1fr));
    }
}

.service.package{
    min-height: 100%;
    width: 90%;
    justify-self: center;
    box-sizing: border-box;
}

#pricing-calculator-head{
    background-image: linear-gradient(to bottom, rgba(0,0,0,0) 20%, rgba(from var(--black) r g b / 1) 50%);
    box-sizing: border-box;
    padding: 2%;
    p{
        box-sizing: border-box;
        text-align: center;
    }
}

.calculator-page{
    background-color: var(--black);
    padding: 2%;
    .prices{
        font-size: 2rem;
        text-align: center;
        @media(orientation: portrait){
            font-size: 1.5rem;
        }
    }
}

#calculator{
    background-color: var(--black);
    padding: 2%;
    display: grid;
    grid-template-columns: repeat(2, minmax(45vh, 1fr));
    grid-auto-rows:  minmax(5vh, auto);
    gap: 2rem;
    font-size: 1.25rem;
    @media(orientation: portrait){
        grid-template-columns: repeat(1, minmax(45vh, 1fr));
        input{
            display: block;
            justify-self: center;
        }
    }
    input{
        font-size: 1.25rem;
        margin-bottom: 2%;
        width: 50%;
    }
}

.flex-center{
    display: flex;
    justify-content: space-around;
    align-items: center;
    @media(orientation: portrait){
        flex-direction: column;
    }
}

.full{
    width: 100%;
}