@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;700&display=swap');

body {
    background-color: rgb(235, 235, 235);
    font-family: 'Poppins', sans-serif;
}

* {
    -webkit-touch-callout: none;
    /* iOS Safari */
    -webkit-user-select: none;
    /* Safari */
    -khtml-user-select: none;
    /* Konqueror HTML */
    -moz-user-select: none;
    /* Old versions of Firefox */
    -ms-user-select: none;
    /* Internet Explorer/Edge */
    user-select: none;
    /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
    /* make it impossible to select text or images */
}

.announcement {
    text-align: center;
    font-weight: 200;
    margin: 0;
    padding: 0;
}

h1 {
    font-weight: 600;
    letter-spacing: 0.15em;
    word-spacing: 0.5em;
    margin: 0 auto;
    height: max-content;
    width: max-content;
    text-align: center;
    animation: beat .25s infinite alternate;
    transform-origin: bottom;
    text-shadow: 2px 0px 0 rgba(0, 255, 255, 0.8),
        -2px 0px 0 rgba(255, 0, 255, 0.8);
}

a {
    text-decoration: none;
    text-decoration: none;
    color: black;
}

.cards-container {
    padding: 0 10vw;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.card {
    height: auto;
    width: 300px;
    padding: 0;
    transition: all 0.3s;
}

.card h2 {
    font-weight: 300;
    margin: 10px auto;
    text-align: center;
}

.card img {
    width: 100%;
    margin: 0;
    padding: 0;
    aspect-ratio: 16/9;
    object-fit: cover;
    border: 1px solid black;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.16);
}

.card:hover {
    transform: scale(1.05);
}

.card:hover h2 {
    font-weight: 400;
    text-shadow: 1px 0px 0 rgba(0, 255, 255, 0.8),
        -1px 0px 0 rgba(255, 0, 255, 0.8);
}

.card:active {
    transition: all 0.05s;
    transform: scale(1);
}

/* Heart beat animation */
@keyframes beat {
    to {
        transform: scale(1.07);
    }
}