* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
	font-family: 'Roboto', sans-serif;
	height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
}

.container {
    perspective: 1500px;
    width: 90vmin;
    height: 80vh;
    background-color: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.flip-card {
    width: 100%;
    height: 100%;
    position: relative;
}

.flip-card-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    cursor: pointer;
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
}

.flip-card-front {
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.flip-card-back {
    background-color: #000;
    transform: rotateY(180deg);
    display: flex;
    justify-content: center;
    align-items: center;
}

.info-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 10px;
    padding: 0 20px;
	align-items: center; /* Centreer de items verticaal */
}

.coming-soon {
	padding-top: 28px;
    color: #fff;
    font-size: 2em;
	flex: 1;
	text-align: center;
}

.facebook-link {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.facebook-logo {
    width: 40px;
    height: auto;
}

.logo, .photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.flip-card-inner:not(.flipped):hover .logo {
   transform: scale(1.05);
}

.flip-card-inner.flipped:hover .photo {
    transform: scale(1.05);
}

.flip-card-inner.flipped {
    transform: rotateY(180deg);
}

@media (max-width: 768px) {
    .container {
        width: 90vmin;
        height: 90vmin;
    }
}
