:root{
    --margin-percentage: 25%; /* Adjust this as needed */
    --min-margin: 50px; 
}


html {
    font-size: 16px; /* Default size for large screens */
}

@media (max-width: 1200px) {
    html {
        font-size: 1.5vw; /* Scale based on viewport width for tablets */
    }
}

@media (max-width: 768px) {
    html {
        font-size: 4vw; /* Scale font size for mobile screens */
    }
}

html, body {
    transition: all 0.5s;
}


.overal_info{
    margin-left: calc(var(--margin-percentage) - var(--min-margin));
    
    padding-left: var(--min-margin);
    padding-right: var(--min-margin);
    
    margin-top: 10px;
    width: 50%;
     
    border-left: 2px solid white;
    border-right: 2px solid white;
    border-bottom: none;
    border-top: none;
    /* No top border */
    border-radius: 0px 0px 30px 30px;
}

.remosharp_title{
    padding: 30px;
    text-align: center;
}


.bg_border {
    border-left: 2px solid white;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    border-top: none;
    /* No top border */
    border-radius: 0px 0px 30px 30px;
    box-shadow: -5px 5px 5px 5px #00000006, 5px 5px 5px 5px #00000006;
}

.canvas_container {
    margin-left: 20%;
    margin-top: 30px;
    padding-top: 1%;
    width: 60%;
    display: flex;
    justify-content: center;
    border-left: 2px solid white;
    border-right: 2px solid white;
    border-bottom: none;
    border-top: 2px solid white;;
    border-radius: 30px 30px 0px 0px;
    box-shadow: 
    -5px -5px 5px 5px #00000006, /* Shadow to the top-left */
    5px -5px 5px 5px #00000006, /* Shadow to the top-right */
    5px 0px 5px 5px #00000006;
}

h1 {
    font-family: "Brandon Grotesque", sans-serif;
    font-weight: 400;
    font-size: xx-large;

}

h2 {
    font-family: "Brandon Grotesque", sans-serif;
    font-weight: 500;
    font-size: x-large;

}

h3 {
    font-family: "Brandon Grotesque", sans-serif;
    font-weight: 400;
    font-size: large;

}



a,
p,
ul {
    font-family: "Brandon Grotesque", sans-serif;
    font-weight: 350;
    font-size: large;
    text-align: justify;

}

label {
    font-family: "Brandon Grotesque", sans-serif;
    font-weight: 350;
    font-size: medium;
    text-align: justify;
}


img {
    height: 65px;
    width: auto;
    object-fit: contain;
    padding-right: 5px;
    padding-bottom: 10px;
}

.subscription_block {
    width: 30%;
    text-align: center;
    background-color: rgb(148, 170, 148);
    border-radius: 10px;
    border: 1px solid white;
    transition: all 0.5s;
}

.subs {
    margin: 5%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sub_button {
    border: 2px solid white;
    background-color: rgb(220, 220, 220);
    color: white;
    border-radius: 5px;
    margin: 7px;
    margin-bottom: 15px;
    padding: 3px;
    padding-left: 6px;
    padding-right: 6px;
    cursor: pointer;
}

.sub_button a {
    font-family: "Brandon Grotesque", sans-serif;
    font-weight: 350;
    font-size: large;
    text-align: justify;
    color: white;
    text-decoration: none;
    cursor: pointer;
}

.reg_button {
    border: 2px solid white;
    background-color: rgb(220, 220, 220);
    border-radius: 5px;
    margin: 7px;
    margin-bottom: 0px;
    padding: 3px;
    padding-left: 6px;
    padding-right: 6px;
    font-family: "Brandon Grotesque", sans-serif;
    font-weight: 350;
    font-size: large;
    text-align: justify;
    color: white;
    text-decoration: none;
    cursor: pointer;
}

.pricing {
    font-family: "Brandon Grotesque", sans-serif;
    font-weight: 500;
    font-size: medium;

}

.input_box {
    border: 1px solid black;
    /* background-color: rgb(220, 220, 220); */
    border-radius: 5px;
    padding: 2px;

}

.popup_container {
    position: fixed;
    left: 50%;
    width: 25%;
    height: 30vh;
    background: rgb(148, 170, 148);
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 20px;
    border-radius: 10px;
    border: 2px solid white;
    box-shadow: 0px 0px 10px 5px #0000003e;
    top: 35%;
    transform: translate(-50%, -50%) scale(0.1);
    visibility: hidden;
}

.popup_container p {
    font-family: "Brandon Grotesque", sans-serif;
    font-weight: 350;
    font-size: large;
    text-align: center;
    padding-left: 7%;
    padding-right: 7%;
}

.popup_btn {
    padding: 10px 60px;
    background: #fff;
    border: 0;
    outline: none;
    cursor: pointer;
    font-size: medium;
    font-weight: 500;
    border-radius: 5px;
}

.popup_container img {
    margin-top: 25px;
    width: 75px;
    height: 75px;
    object-fit: fill;
    border-radius: 10px 0px 10px 0px;
    box-shadow: 0px 0px 10px 5px #0000003e;
    padding: 0px;
}


.account_section
{
    margin-left: calc(var(--margin-percentage) - var(--min-margin));
    
    padding-left: var(--min-margin);
    padding-right: var(--min-margin);

    width: 50%; 
    border-radius: 15px; 
    
    border-left: 2px solid white;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    border-top: none;
    border-radius: 30px;

    padding-bottom: 30px;

    margin-top: 70px;
}



.open-popup {
    visibility: visible;
    top: 50%;
    transform: translate(-50%, -50%) scale(1);
    transition: all 0.5s;
}




footer a, p, ul, label{
    font-family: "Brandon Grotesque", sans-serif;
    font-weight: 350;
    font-size: large;
    text-align: justify;
}

select {
    font-family: "Brandon Grotesque", sans-serif;
    font-weight: 350;
    font-size: medium;
    text-align: justify;
}

* {
    font-family: "Brandon Grotesque", sans-serif; 
}