body{
    font-family: 'Roboto Mono', monospace;
    font-weight: 600;
    line-height: 1.80;
    margin: 0;
    padding: 0;
    color: #1C1A1A;
}

/* General style */


	/* Text */

h3{
	font-family: 'Krona One', sans-serif;
    padding: 0;
    margin: 0;
}

a{
    text-decoration: none;
    display: flex;
    color: #1C1A1A;
    font-size: 20px;
}

ul{
    list-style: none;
    padding-left: 0;
}

.tx-justify{
    text-align: justify;
}
.tx-right{
    text-align: right;
}

.header-krona{
    font-family: 'Krona One', sans-serif;
}

.txt-secondary-size{
    font-size: 25px;
}

	/* Colors */

.secondary-red{
    background-color: #CC534A;
}
.main-green{
    background-color: #9CC9BC;
}
.pink{
    background-color: #E3B2B0;
}
.secondary-green{
    background-color: #9ECBCA;
}
.bg-image-red{
    background-image: linear-gradient(#E3B2B0, #D27156, #E3B2B0);
}

.bg-image-mix{
    background-image: linear-gradient(45deg, #9ECBCA, #E3B2B0, #9CC9BC);
}

/* Text */

.white-font{
    color: #fff;
}

/* Index page style */


#workshop{
    writing-mode: vertical-rl;
    text-orientation: sideways-right;
    position: fixed;
    top: 168px;
    left: 20px;
    
}

#seminars{
    writing-mode: vertical-rl;
    text-orientation: sideways-right;
    position: fixed;
    top: 168px;
    right: 20px;
    
}

#server{
    position: fixed;
    bottom: 60px;
    left: 40%;
}

#network{
    position: fixed;
    left: 40%;
}

/* network image container style */

.titles{
    font-size: 18px;
    justify-content: center;
    text-align: center;
}

.border-image-network{
    border-image:conic-gradient(#CC534A,#9CC9BC,#E3B2B0, #9ECBCA, #D27156 ) 1;
    border-width: 5px;
    border-style: solid;
}

.main-container{
    padding-bottom: 10px;
}

.grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
    grid-gap: 10px;
}

.network-photos-container{
    margin: 3% 4%;
    height: 800px;
    overflow-y: scroll;
}

img{
    width: 400px;
    object-fit: cover;
    height: 400px;
}


/* Network page style */

.what-network-container{
    width: 80%;
    margin: 20px auto 0 auto;
    text-align: justify;
}

/* Seminars page style */

.single-seminar-container{
    background-image: url("/assets/images/others/component.png");

}

.seminar{
    background-color: #fff;
}

.a-underline{
    text-decoration-color: #9CC9BC;
    text-decoration-line: underline;
    text-decoration-thickness: 5px;
}


/* Workshop page style */

#rpi-img-draw{
    width: 100%;
    height: auto;
}


/* Server page style */

.btr{
    border-top: 4px solid #CC534A;
    border-right: 4px solid #CC534A;
}

.lb{
    border-left: 4px solid #CC534A;
    border-bottom: 4px solid #CC534A;
}

.btl{
    border-top: 4px solid #CC534A;
    border-left: 4px solid #CC534A;
}

.br{
    border-right: 4px solid #CC534A;
}

.bt{
    border-top: 4px solid #CC534A;
}

#topButton{
    display: none;
    width: 50px;
    height: auto;
    position: fixed;
    bottom: 87px;
    right: 70px;
    cursor: pointer;
}

.second-img-size{
    width: 600px;
    height: auto;
}

.underline-red{
    text-decoration-line: underline;
    text-decoration-color: #CC534A;
    text-decoration-thickness: 3px;
}


@media screen and (max-width: 780px) {
    
    #workshop{
        writing-mode: vertical-rl;
        text-orientation: sideways-right;
        position: fixed;
        top: 168px;
        left: 20px;
        color:#fff;        
    }
    
    #seminars{
        writing-mode: vertical-rl;
        text-orientation: sideways-right;
        position: fixed;
        top: 168px;
        right: 20px;
        color:#fff;
        
    }
    
    #server{
        position: fixed;
        bottom: 70px;
        left: 12%;
        color:#fff;
    }
    
    #network{
        position: fixed;
        left: 10%;
        top: 50px;
        color:#fff;
    }
    
    .second-img-size{
        width: 400px;
        height: auto;
    }
    
    #topButton{
    visibility: hidden;
}

    a{
        font-size: 0.8rem;
    }

}



