*,
*:before,
*:after{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    /* cursor: url(images/cloud_cursor.png),auto; */
}
html{
    scroll-behavior: smooth;
}
body{
    /* background-image: url("images/background-01.jpg");
    background-size: 100%;
    background-repeat: repeat-y; */
    background-color:#E2E1FE;
    font-family: "TW Cen MT", "Karla", "Helvetica", sans-serif;
}

/*background images */
.cleft{
    height:30%;
    width: auto;
    position:absolute; 
    top: 165px;
    left:-110px;
    opacity: 0.8;
    z-index: -1;
}
.cright{
    height:35%;
    width:auto;
    position: absolute;
    bottom:-100px;
    right:0;
    z-index: -1;
}
.ctop{
    height:180px;
    width:auto;
    position:absolute;
    top:-90px;
    right: 0;
}

/*CONTENT*/
.wrapper{
    width:80%;
    padding:2rem;
    margin: 0 auto;
    font-weight: bold;
}
.backbutton{
    position:absolute;
    padding-top:18vh;
    margin-bottom:.5em;
    font-size:3vw;
    color:#A895D9;
    text-decoration: none;
}

.main{
    text-align:center;
    padding-top:18vh;
    margin-bottom:.5em;
    z-index: 1;
    font-size:3vw;
}
/* snippet */
.snippet{
    font-size: 1.4vw;
    text-align:center;
    margin-left: 5%;
    margin-right: 5%;
}
.snippet a{
    display:inline-block;
    padding-left: 10px;
}

/* entries */
.entriesbg{
    background-color: rgba(255, 255, 255, 0.5);
}
.entries{
    margin-left: 15%;
    margin-right: 15%;
    line-height: 1.5;
    padding-top:20px;
    padding-bottom: 80px;
}
.date{
    text-align:right;
}
.intro{
    text-align:justify;
}
/* Text settings */
.entries p{
    font-size:1.5vw;
    color: rgb(95, 95, 95);
    margin-bottom: 20px;
}
.entries h2{
    font-size: 2.1vw;
    text-decoration: underline 3px solid #c3abff;
}

.entries h3{
    font-size: 1.6vw;
    /* text-align: justify; */
}
.entries h4{
    font-size: 1.4vw;
    /* text-align: justify; */
    padding-left: 5%;
    padding-top: 8px;
}
/* list settings */
.entries ul{
    list-style-position: inside;
}

/* Image settings */
.entries img{
    width:100%;
    height:auto;
}
hr{
    border-top: 5px solid blueviolet;
    margin-top:15px;
    margin-bottom:15px;
}
/* links */
.entries a{
    color: rgba(78, 49, 240, 0.8);
    position:relative;
    top:0px;
}
.entries a:hover{
    color: rgba(78, 49, 240, 0.5);
    position:relative;
    top:-2px;
}
a:hover{
    cursor: url(images/sparkles_cursor.png),auto;
}
/* END OF CONTENT */

@media only screen and (max-width: 800px) {
    .wrapper{
        padding:0.1rem;
    }
    .cleft{
        height:20%;
    }
    .cright{
        height:25%;
    }
}