html {
    background-image: url("blog_large.gif");
    background-repeat: repeat;
    -webkit-animation: backgroundScroll 15s linear infinite;
    -webkit-animation-fill-mode: forwards;
    animation: backgroundScroll 20s linear infinite;
    animation-fill-mode: forwards;
    background-color: rgb(255, 255, 255);
    color: white;
}

h1{
    margin-bottom: 0px;
}
p.caption {
    font-size: small;
    margin-top: 0;
}


body {
    backdrop-filter: blur(5px);
    background-color: rgba(0, 0, 0, 0.85);
    margin: 0px 15%;
    font-family: 'Courier New', 'Courier', monospace;
    font-weight: bold;
    padding: 50px 5%;
}

footer{
    font-size: small;
    padding-top: 50px;
}


.photo, .photo-small {
    width: 100%
}

@media(min-width: 1000px) {
    .sideText {
        transform: rotate(90deg);
        left: 53%;
        top: 0px;
        position: relative;
        text-align: right;
        font-size: 30pt;
        margin: 0;
        padding: 0;
    }
    
    .photo-small {
        width: 50%;
    }
}

#profilepic {
    width: 300px;
    height: 300px;
    display: inline;
    float: left;
    margin-right: 10px;
}

.pageicon {
    position: relative;
    display: inline-block;
}

.pageicon .tooltiptext {
  width: 60px;
  background-color: black;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;
 
  position: absolute;
  z-index: 1;
  top: 80%;
  left: 50%;
  margin-left: -30px;
}

.pageicon:hover .tooltiptext {
  visibility: visible;
}

@media(max-width: 1000px) {
    body {
        margin: 0 40px;
        padding: 10px 10px;
    }

    html {
        background-image: url("blog_small.gif");
    }

    .sideText {
        font-size: 16pt;
    }
}


@media(max-width: 600px) {
    body {
        margin: 0 20px;
        padding: 10px 10px;
    }

    html {
        background-image: url("blog_extrasmall.gif");
    }

    .sideText {
        font-size: 16pt;
    }

    #profilepic {
        width: 10rem;
        height: 10rem;
    }
}


@-webkit-keyframes backgroundScroll {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 384px 384px;
    }
}

@keyframes backgroundScroll {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 384px 384px;
    }
}