body {
    background-image: url('./assets/images/tile3.png');
    background-repeat: repeat;
    margin: 0;
    padding: 0;
}
h1 {
    font-size: 50pt;
    font-weight: bold;
    margin: 20px;
}
p {
    font-size: 24pt;
    font-weight: normal;
}
a {
    text-decoration: none;
    color: black;
}
img {
    margin: 0 auto;
}
.clicky {
    cursor: pointer;
}
.clicky:hover {
    color: blue;
}
.clicky:active {
    color: red;
}
.clicky:focus {
    color: green;
}
.clicky:visited {
    color: purple;
}
.link-row {
    height: 120px;
}
.music-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}
.music-popup p {
    font-size: 24pt;
    font-weight: normal;
    color: white;
}
.music-popup button {
    font-size: 24pt;
    font-weight: normal;
    color: white;
}
.gif-container .active {
    display: none;
}
.gif-container .static {
    display: inline;
}
.gif-container:hover .active {
    display: inline;
}
.gif-container:hover .static {
    display: none;
}