@font-face {
    font-family: 'Font1';
    src: url('../fonts/Delius-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Font2';
    src: url('../fonts/mojangles.otf') format('opentype');
}

* {
    margin: 0rem;
    padding: 0;
    font-family: 'Font1';
    font-weight: bold;
    scroll-behavior: smooth;
    /* outline: 1px solid red; */
}

body {
    background-color: #9b8eff;
    background-image: url('/images/20a72f3b1e05484fb95829921557ad0b.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    image-rendering: crisp-edges;
    image-rendering: pixelated;
}

.text1 {
    font-size: 1rem;
}

.text2 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

/* LINK STYLES START */
.link1 {
    color: #ad00d4;
}

.link1:hover {
    color: #f42bff;
}

/* LINK STYLES END */

/* WRAPPER BOXES START */
.wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: #ffffff99;
    margin: auto;
    width: 48rem;
}

.wrapper2 {
    display: grid;
    grid-template-columns: 1fr;
    background-color: #ffffff99;
    margin: auto;
    width: 48rem;
}

.wrapper3 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: #ffffff99;
    margin: auto;
    width: 100%;
}

/* WRAPPER BOXES END */


.filter {
    background-image: url('/images/tile2.png');
    margin: 0;
    position: fixed;
    top: 0px;
    width: 100%;
    height: 500rem;
    opacity: 10%;
    background-size: 2rem;
    image-rendering: crisp-edges;
    image-rendering: pixelated;
    pointer-events: none;
    /* ALLOWS USER TO INTERACT THROUGH THE DIV!!! */
}






.div1 {
    margin: 1rem;
}
.div1:hover {
    transform: scale(1.01);
    box-shadow: 0 0px 3rem #0000007a;
    opacity: 90%;
}






.image2 {
    display: none;
}



.splash-text {
    /* font-size: 1.25rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px #000000; */
    animation: pulse 2s ease-in-out infinite; /* Apply the animation */
}

@keyframes pulse {
    0% {
        transform: scale(1); /* No change */
        color: #2a8500;
    }
    50% {
        transform: scale(1.05); /* Slightly bigger */
        color: #ff0000; /* Change color */
    }
    100% {
        transform: scale(1); /* Back to original size */
        color: #2a8500;
    }
}







.fab-container {
    display: flex;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
    /* WITHOUT THIS PROPERTY, THE ANIMATIONS WILL PREVENT YOU FROM CLICKING THIS FA BUTTON */
}

.fab {
    width: 4rem;
    height: 4rem;
    background-image: url('../images/arrow.svg');
    background-size: cover;
    background-position: center;
    border: none;
    border-radius: 0px;
    /* color: white; */
    cursor: pointer;
    box-shadow: 0 0px 30px #0000007a;
}







/* MEDIA QUERIES START */
@media(max-width: 768px) {
    .wrapper {
        width: 100%;
        grid-template-columns: 1fr;
    }

    .wrapper2 {
        width: 100%;
    }

    .wrapper3 {
        width: 100%;
        grid-template-columns: 1fr;
    }

    .image1 {
        display: none;
    }

    .image2 {
        display: block;
    }
}

/* MEDIA QUERIES END */