html {
    font-size: larger;
    line-height: 1;
    word-break: normal;
    word-wrap: break-word;
}

#FUCKYEAH {
    font-weight: bold;
    line-height: 0px;
    transform: rotate(2deg);
}
@media (min-width: 600px) {
    #FUCKYEAH {
        padding: 1px;
    }
}

a {
    color: #ff008c;
    text-decoration: none;
}

header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 20px;
}


.small-text {
    font-size: 50%;
    font-style: italic;
    font-weight: normal;
}

#socials {
    display: flex;
    flex-direction: column;
}

.btn88x31-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.btn88x31 {
    transition: all 0.3s ease;
    margin-left: 5px;
}
.btn88x31:hover {
    transform: translateY(-5px) scale(1.05);
}
.btn88x31:active {
    transform: translateY(3px) scale(.95);
}

#gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.gallery-image {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
    object-fit: cover;
    max-width: 100%;

    transition: transform 0.3s ease;
}

.gallery-image:hover {
    transform: scale(1.02);
}

.pointy {
    cursor: pointer;
}

@media (min-width: 768px) {
    .gallery-image {
        width: calc(25% - 10px); /* 4 images per row */
        max-width: 280px;
    }
}

@media (min-width: 1200px) {
    .gallery-image {
        width: calc(20% - 10px); /* 5 images per row */
        max-width: 250px;
    }
}

.modal {
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

.modal-content {
    margin: auto;
    display: block;
    height: 90%;
    max-height: 700px;
}

#socials {
    display: flex;
    flex-direction: column;
    margin: 5px;
}