@import url('https://fonts.googleapis.com/css2?family=Anta&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anta&family=Rock+3D&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anta&family=DotGothic16&family=Rock+3D&display=swap');

.gif-container {
    display: flex;
    justify-content: center; /* Center the GIFs horizontally */
    flex-wrap: wrap; /* Allows GIFs to wrap to the next line on smaller screens */
}
.gif-container img {
    margin: 10px; /* Adds space around each GIF */
    max-width: 100%; /* Ensures GIFs are not larger than their container */
}

body {
    background: url("bkgd/fog_geocities.jpg");
    font-family: "DotGothic16", sans-serif;
    color:black;
}

/* Unvisited link */
a:link {
    color: purple;
}

/* Visited link */
a:visited {
    color: rgb(183, 18,18);
}