*,
*: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;
    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:45%;
    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;
}
.main{
    text-align:center;
    padding-top:18vh;
    margin-bottom:.5em;
    z-index: 1;
    font-size:5vw;
}
.entries{
    margin-left: 15%;
    margin-right: 15%;
    line-height: 2;
}
.entries h1{
    /* float:left; */
    display: inline;
    font-size: 2.1vw;
    text-decoration: underline;
}
.entries p{
    /* float:left; */
    display: inline;
    font-size:1.5vw;
    color: rgb(95, 95, 95);
}

.entries a{
    text-decoration: none;
    color: black;
    position:relative;
    top:0px;
}
.entries a:hover{
    text-decoration: none;
    border-bottom:3px solid blueviolet;
    cursor: url(images/sparkles_cursor.png),auto;
    top: -2px;
}
hr{
    border-top: 5px solid blueviolet;
    margin-top:15px;
    margin-bottom:15px;
}

@media only screen and (max-width: 800px) {
    .wrapper{
        padding:0.1rem;
    }
    .cleft{
        height:20%;
    }
    .cright{
        height:25%;
    }
}