* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    width: 100vw;
    height: 100vh;
    font-family: 'Sour Gummy', sans-serif;
}

.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 2.5px;
    border: 2.5px solid black;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    color: black;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-size: 1rem;
    text-align: center;
}

.image-container:hover .overlay {
    opacity: 1;
}

::selection {
    background-color: black;
    color: white;
}