@import url('https://fonts.googleapis.com/css2?family=Kulim+Park:ital,wght@0,200;0,300;0,400;0,600;0,700;1,200;1,300;1,400;1,600;1,700&family=Libre+Barcode+128+Text&family=Silkscreen:wght@400;700&family=Ubuntu+Sans+Mono:ital,wght@0,400..700;1,400..700&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

:root {
    --section-title-fsize: clamp(2rem, 2.5dvw, 3.5rem);
    --content-title-fsize: 1.5rem;
    --content-info-fsize : 1.2rem;

}

@media screen and (max-width: 750px){
    :root {
        --section-title-fsize: clamp(1rem, 2.5dvw, 3.5rem);
        --content-title-fsize: 1rem;
        --content-info-fsize : 0.8rem;
    }
    
}
.content_wrap {
    width: 100%;
    height: auto;
    display: flex;
    margin: 0;
    border: 0;
}


.content_wrap_2 {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    border: 0;
}
.content_container {
    width: 80%;
    height: auto;
    display: flex;
    justify-content: left;
    align-items: center;
    border: 0.5px dashed rgb(255, 255, 255);
    border-radius: 5px 5px 0px 0px;
    margin: 5px auto;
    padding: 5px;
    flex-direction: row;
}

.grid_container {
    display: flex;
    width: 60%;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background-color: rgb(0, 8, 82);
    border-radius: .8rem;
    margin: 0.5rem;
}


.change_flex {
    justify-content: center;
    flex-direction: column;
}

.grid_img_container {
    height: clamp(300px, 30dvw, 500px);
}
.grid_container img {
    border-radius: .8rem;
    max-height: 100%;
    max-width: 100%;
    object-fit: cover;
}

.grid_container video {
    margin: 2rem;
    border-radius: .8rem;
    max-height: 100%;
    max-width: 100%;
    object-fit: cover;
}
.res_container {
    background-color: #93f1f83a;
    width: 60%;
    height: auto;
    display: flex;
    justify-content: left;
    align-items: center;
    border: 0.5px dashed rgb(255, 255, 255);
    border-radius: 25px;
    margin-bottom: 10px;
    overflow: auto;
}

.section_title_container {
    position: relative;
    /* box-shadow: ; */
    height: 5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

h1.title {
    font-family: "Silkscreen","Rubik", sans-serif;
    font-weight: 600;
    font-size: var(--section-title-fsize);
    color: #ffffff;
}

.content_view {
    margin: 20px;
}

.author_view {
    display: flex;
    flex-direction: row;
    justify-content: left;
}
p.content_title {
    font-family: "Kulim Park";
    font-weight: 900;
    color: #ffffff;
    font-size: var(--content-title-fsize);
    margin: 0;
}

p.content_info {
    font-family: Rubik;
    font-weight: 600;
    color: #03cec4;
    font-size: var(--content-info-fsize);
    margin: 0;
    padding: 0;
}

p.author_info {
    margin-right: 20px;
    font-size: .9rem;
    font-weight: 300;
}

p.DOI {
    color: rgb(3, 138, 228);
    font-style: italic;
    font-size: .85rem ;
    text-decoration: underline;
}

div.element_mac_circles {
    width: 15px;
    height: 15px;
    border-radius: 7.5px;
    margin: 3px;
}

.circle_wrapper {
    width: auto;
    height: auto;
    display: flex;
    justify-content: space-between;
    margin-right: 1rem;
}
.red {
    background-color: red;
}

.yellow {
    background-color: yellow;
}

.green {
    background-color: green;
}


.box {
    position: relative;
    width: 60%;
    height: 2px;
    background-color: #41c3ff;
    margin: 0;
    padding: 0;
    border-radius: 1px;
    display: flex;
}

.circle {
    position: absolute;
    width: 25vw;
    height: 2rem;
    background-color: #41c3ff;
    border-radius: 1px;
    display: flex;
}

p.section_title {
    position: absolute;
    font-family: "Silkscreen","Ubuntu", serif;
    font-weight: 300;
    color: #ffffff;
    font-size: clamp(1rem, 1dvw, 1.5rem);
    display: flex;
    background-color: #41c3ff;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
}


@media screen and (max-width: 1173px) {
    .grid_container {
        width: 100%;
    }
    
}