body,
html {
    margin: 0;
    padding: 0;
    width: 100%;
}

body {
    font-family: "Times New Roman", serif;
    background-color: #ffffff;
    background-image: linear-gradient(45deg, #ffffff 47.22%, #e6e6e6 47.22%, #e6e6e6 50%, #ffffff 50%, #ffffff 97.22%, #e6e6e6 97.22%, #e6e6e6 100%);
    background-size: 25.46px 25.46px;
    color: black;
}

h1,
h2 {
    color: #0091ea;
    font-weight: normal;
}

h1 {
    font-size: 22px;
}

h2 {
    font-size: 18px;
}

a {
    text-decoration: underline;
    color: #bf0095;
    transition: 0.2s;
    display: inline-block;
    cursor: pointer;
}

p {
    font-family: sans-serif;
}

header {
    padding-top: 30px;
    width: 100%;
    background-color: #e9f4fd;
    background-image: linear-gradient(#ffffff, #7bd7e6);
    box-shadow: 0px 0px 100px 100px #7bd7e6;
    color: #371db8;
    text-align: center;
}

header h1,
header h2 {
    font-family: "TrashHand", serif;
    color: black;
    font-size: 62px;
    margin: 0px;
}

#header-inner {
    display: flex;
}

#header-inner div {
    margin: 0px 80px 20px 80px;
}

#header-inner div:nth-of-type(1) {
    flex: 2;
    text-align: left;
}

#header-inner div:nth-of-type(1) h1 {
    color: #e7ad59;
}

#header-inner div:nth-of-type(2) {
    flex: 1;
    text-align: right;
    padding-right: 20px;
    position: relative;
}

#header-inner div:nth-of-type(2) h2 {
    color: #864cff;
}

footer {
    clear: both;
}

a:hover {
    transform: rotate(3deg);
}

.block-icons a {
    display: inline;
}

.block-icons a:hover {
    transform: none;
}

/* General Class Styles */
.left {
    text-align: left;
}

.right {
    text-align: right;
}

.center {
    text-align: center;
}

.gray {
    color: gray;
}

.twist {
    transition: 1s;
}

.twist:hover {
    transform: rotate(360deg);
}

.tilt {
    transition: 0.2s;
}

.tilt:hover {
    transform: rotate(3deg);
}

/* General ID Styles */
#plot {
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    z-index: 1;
}

#plot p {
    font-family: sans-serif;
}

#plot h1,
#plot h2 {
    font-weight: bolder;
    text-shadow: none;
}

#plot-inner {
    width: 90%;
    margin: 0 auto;
    padding: 30px 30px 100px 30px;
}

/* +++ Classes +++ */
.block {
    padding: 10px;
    margin: 10px;
    min-height: 210px;
    width: 100%;
    clear: both;
    border: dashed 2px #373837;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    z-index: 1;
    position: relative;
    display: inline-block;
}
.block-shade {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 2;
    opacity: 0.4;
}
.block-inner {
    position: relative;
    z-index: 3;
}

.block h1 {
    display: inline;
    font-size: 30px;
}

.block h2 {
    margin: 5px 0 0 0;
    opacity: 0.7;
}

.block-icons,
.block-site,
.block-extra {
    float: left;
}

/* Block Icons */
.block-icons {
    width: 210px;
    height: 210px;
    position: absolute;
    overflow: hidden;
    border-radius: 10%;
    margin-left: 5px;
}

.block-icons h1 {
    font-size: 40px;
    /* This hides the number rendering */
    display: none;
}

.block-icons img {
    height: 100%;
    display: block;
    transition: 0.3s;
}

.block-icons img:hover {
    height: 150%;
    margin-top: -25%;
    margin-left: -25%;
}

/* Block Site */
.block-site {
    padding-left: 235px;
}

.block-site p {
    margin-bottom: 0px;
}

/* Block Extra */

.block-extra {
    padding: 0px 0 10px 0;
}

.block-extra ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.block-extra li {
    display: inline;
    font-size: 12px;
    padding: 0 20px 0 0;
}

/* +++ IDs +++ */

#search-top,
#search-end {
    color: black;
    font-size: 1.5em;
    text-align: center;
}

#search-top {
    padding: 0 0 30px 0;
}

#search-end {
    padding: 30px 0 0 0;
    clear: both;
}

#widgets p {
    margin: 0px;
}

#widgets input {
    height: 35px;
    margin: 2px;
    display: inline-block;
}

#widgets textarea {
    height: 20px;
    margin-top: 5px;
    resize: none;
    display: inline-block;
}

/* +++ Mobile Modifications +++ */
@media (max-width: 1100px) {
    #plot-inner {
        width: 90%;
        padding: 30px 0 100px 0;
    }
}

/* +++ Mobile Modifications +++ */
@media (max-width: 850px) {
    #header-inner div {
        margin-left: 40px;
        margin-right: 40px;
    }

    #header-inner div:nth-of-type(2) {
        display: none;
    }

    .block {
        width: 95%;
        min-height: 100px;
    }

    .block-icons {
        display: none;
    }

    .block-site {
        padding-left: 10px;
        width: 80%;
    }
}

@media (min-width: 1400px) {
    .block {
        max-width: 46%;
    }
}
