:root {
    --width: 100%;
    --first-color: #51829B;
    --first-color-dark: #143a4d;
    --first-color-light: #acdef7;
    --second-color: #F6995C;
    --second-color-dark: #df7128;
    --second-color-light: #fde3d1;
    --bg-first-color: rgb(255, 228, 228);
    --br: 16px;
    --border-color: #03a9f4a8;

}


@font-face {
    font-family: 'Poppins';
    src: url('fonts/popins/Poppins-Medium.ttf') format('truetype');

}




* {
    padding: 0;
    margin: 0;
}


.gradient {
    background-image: linear-gradient(180deg, #07093a, #22629c);
}

.info-box {
    background-color: #fffdf8;
    color: #434142;
    margin-top: 4px;
    margin-bottom: 4px;
    padding: 6px;
    font-size: 16px;
    text-align: left;
    border: 0.5px inset #c2c2c2;
    box-shadow: 0 2px 3px #ccc;
    border-radius: var(--br);
    border: solid var(--first-color);
}

.banner {
    padding: 10px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    background-image: linear-gradient(180deg, #07093a, #22629c);
    font-style: italic;
    font-family: times new roman;
    /* border: solid 4px #9bbbff; */
    color: white;
    border-radius: var(--br);
    box-shadow: 0 0 10px 0px #6d6d6d;
}

a {
    text-decoration: none;
}


#root2 {
    max-width: var(--width);

    margin: auto;


}

/* body {
    background-color: #fc9;
    text-align: center;
    padding: 3px 10px;
    margin: 0;
    scroll-behavior: smooth;
    font-style: italic;
    font-family: Helvetica, sans-serif;
    font-weight: 700;
} */
body {
    font-family: 'Popins', sans-serif;

    scroll-behavior: smooth;
    font-style: italic;
    font-family: Helvetica, sans-serif;
    font-weight: 700;
    background-color: #f5f5f5;
}

.text-bold {
    font-weight: 700;
}

.text-blue {
    color: rgb(31, 75, 172) !important;
}

.text-first {
    color: var(--first-color) !important;
}

.border-first {
    border: solid var(--first-color) !important;
}

.border-second {
    border: solid var(--second-color) !important;
}

.first-bg-color {
    background-color: var(--first-color);
    color: #fff;
}

.second-bg-color {
    background-color: var(--second-color);
    color: #fff;
}

.headname {
    font-size: 24px;
}

.border-colored {
    background-color: #fffdf8;
    color: #434142;
    margin-top: 4px;
    margin-bottom: 4px;
    padding: 6px;
    font-size: 14px;
    font-family: 'cdregular';
    font-style: italic;
    border: 0.5px inset #c2c2c2;
    box-shadow: 0 2px 3px #ccc;
    text-align: center;
    border-radius: var(--br);
    border-width: 3px;

    border-color: #00e8f2 var(--first-color) var(--first-color) #00e8f2;
}


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

        width: 98%;

    }

    .headname {
        font-size: 18px;
    }

}




@media only screen and (max-width: 400px) {
    .main-text {
        font-size: 14px;
    }
}