* {
    box-sizing: border-box;
}

body {
    background-image: url("images/wXl6s8V.gif");
    color: #f43036;
    font-size: 20px;
    margin: 27px;
}

@font-face {
    font-family: 'Innerspace';
    src: url("fonts/Innerspace-Regular.ttf");
}

@font-face {
    font-family: 'Orange Kid';
    src: url("fonts/Orange Kid.otf");
}

.box {
    background-color: #050406;
    border: #f43036;
    border-radius: 8px 8px 0 0; /* 8px top, 8px right, 0 bottom and 0 left */
    border-style: solid;
    border-width: 2px 2px 1px 2px;
    color: #f43036;
    font-family: 'Orange Kid';
    letter-spacing: 4px;
    line-height: 0;
    max-width: 1050px;
    max-height: 1080px;
    padding: 2px;
    text-align: right;
    margin: auto;
}

.box2 {
    background-color: #050406;
    border: #f43036;
    border-radius: 0 0 8px 8px; /* 0 top, 0 right, 8px bottom and 8px left */
    border-style: solid;
    border-width: 1px 2px 2px 2px;
    font-family: 'Innerspace';
    line-height: 1.4;
    max-width: 1050px;
    max-height: 1080px;
    overflow-y: scroll;
    padding: 4px;
    text-align: center;
    margin: auto;
}

/* unvisited link */
a {
    color: #f43036;
    font-family: 'Orange Kid';
    text-decoration: underline;
}

/* mouse over link */
a:hover {
    color: #f8f1d6;
    cursor: url(https://cur.cursors-4u.net/cursors/cur-6/cur586.cur), auto !important;
}

.row {
    display: flex;
    flex-wrap: wrap;
    padding: 0 12px;
}

/* Create four equal columns that sits next to each other */
.column {
    flex: 25%;
    margin-top: 16px;
    margin-bottom: 36px;
    max-width: 25%;
    padding: 0 12px;
}

.column img {
    display: block;
    width: 180px;
    height: 180px;
}

.container {
    display: flex;
    justify-content: center;
    position: relative;
}

.overlay {
    background-image: url(images/ss122.gif);
    height: 180px;
    width: 180px;
    opacity: 0;
    overflow-y: scroll;
    position: absolute;
    transition: .5s ease;
}

.container:hover .overlay {
    opacity: 1;
}

.text {
    color: #8a7bf7;
    font-family: 'Orange Kid';
    font-size: 18px;
    position: absolute;
    text-align: center;
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
  .column {
    flex: 50%;
    max-width: 50%;
  }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column {
    flex: 100%;
    max-width: 100%;
  }
}

@media screen and (min-width: 1080px) {
    body {
        margin: 27px;
    }
}

div::-webkit-scrollbar {
    display: none;
}

::-webkit-scrollbar {
    width: 13px;
}

::-webkit-scrollbar-corner {
    background: white;
    border-radius: 16px;
}

::-webkit-scrollbar-thumb {
    background: #f43036;
    border-radius: 16px;
}

::-webkit-scrollbar-track {
    background: black;
}