body {
    margin: 0;
    padding: 0;
    height: 100vh;
    width: 100vw;
    position: relative;
}



.container {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    overflow: hidden;
    z-index: 1;
}

.title {
    height: 15vh;
    width: 95vw;
    margin: 0 auto;
    text-align: center;
    font-size: 7vw;
    font-weight: bold;
    white-space: nowrap;
    text-shadow: 5px 5px 6px rgba(0, 0, 0);
    font: 'franklin gothic medium';
    color: #f5b411;
    text-transform: uppercase;
}

#imageContainer {
    height: 30vh;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 95vw;
    margin: 0 auto;
}

.image-wrapper {
    height: 100%;
    text-align: center;
    margin: 0 5px;
    max-width: 18vw;
}

.image-wrapper img {
    opacity: 1;  /* Ensure card images remain fully opaque */
    height: 100%;
    width: auto;
    object-fit: contain;
}

#handContainer {
    width: 95vw;
    height: 15vh;
    margin: 0 auto;
    text-align: center;
    line-height: 1.2;
    padding: 0;
    white-space: nowrap;
    overflow: hidden;
    font-weight: bold;
    color: #f5b411;
    text-shadow: 5px 5px 6px rgba(0, 0, 0);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
}

#innehavareRow {
    height: 15vh;
    width: 90vw;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#innehavareContainer {
    height: 100%;
    width: 100%;
    text-align: center;
    font-size: 7vw;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    text-shadow: 5px 5px 6px rgba(0, 0, 0);
    color: #38fab3;
    flex-grow: 1;
}

#antalDisplay {
    width: min(15vh, 17vw);
    height: min(15vh, 17vw);
    background-color: #f5b411;
    border-radius: 50%;
    border: 2px solid black;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: min(12vw, 12vh);
    font-weight: bold;
    color: black;
    text-shadow: 2px 2px 4px rgb(255, 255, 255);
    margin-left: 20px;
    flex-shrink: 0;
}
