body {
    background: #ECEFF1;
    color: rgba(0,0,0,0.87);
    font-family: Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    cursor: url('images/kursor.png'), auto;
    height: 100%;
    min-height: 100vh;
    overflow: hidden;
}

.image-container {
    overflow: hidden;
    position: relative;
}

.image-container img {
    clip-path: inset(0 0 10px 0);
    margin-bottom: -15px;
}

#message {
    background: white;
    max-width: 648px;
    height: auto;
    min-height: 150px;
    margin: auto;
    padding: 32px 24px;
    border-radius: 3px; 
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    max-height: 800px;
}

#message h1 {
    font-size: 22px;
    font-weight: 600; color:#ff7190; margin: 0 0 16px
}

#photos-container h2 {
    font-size: 22px;
    font-weight: 600; color:#ff194b; margin: 0 0 16px
}

@media (max-width: 600px)
{
  body, #message { margin-top: 0; background: white; box-shadow: none; }
}

#buttons {
    width: 648px;
    justify-content: center;
    text-align: center;
    float: left;
}

button {
    position: relative;
    margin: auto;
    width: 300px;
    cursor: pointer;
    outline: none;
    border: 0;
    text-transform: inherit;
    font-size: inherit;
    font-family: inherit;
    cursor: url('kursor.png'), auto;
}

button.styling {
    font-weight: 600;
    font-size: large;
    color: hsl(61, 100%, 82%);
    padding: 1.25em 2em;
    background: #ff7190;
    border: 2px solid #803142;
    border-radius: 0.75em;
    transform-style: preserve-3d;
    transition: transform 150ms cubic-bezier(0, 0, 0.58, 1);
}

button.styling::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ff7190;
    border-radius: inherit;
    box-shadow: 0 0 0 2px #803142, 0 0.625em 0 0 #fed8f3;
    transform: translate3d(0, 0.75em, -1em);
    transition: transform 150ms cubic-bezier(0, 0, 0.58, 1), box-shadow 150ms cubic-bezier(0, 0, 0.58, 1);
}

button.styling:hover {
    background: hsl(61, 100%, 82%);
    color: #ff7190;
    transform: translate(0, 0.25em);
    cursor: url('images/kursor.png'), auto;
}

button.styling:hover::before {
    background: hsl(61, 100%, 82%);
    transform: translate3d(0, 0.5em, -1em);
    box-shadow: 0 0 0 2px #803142, 0 0.625em 0 0 #fef1d8;
}

button.styling:active {
    background: hsl(61, 100%, 82%);
    transform: translate(0em, 0.75em);
}

.hearts {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1000;
}

.heart {
    position: absolute;
    top: -50px;
    font-size: 24px;
    animation: fall 3s linear infinite;
}

@keyframes fall {
    0% {
        top: -50px;
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
    100% {
        top: 100vh;
        opacity: 0;
        transform: scale(1.5);
    }
}

@keyframes fadeEffect {
    0% { opacity: 0; }
    25% { opacity: 1; }
    50% { opacity: 0; }
    75% { opacity: 1; }
    100% { opacity: 0; }
}

#photos-container {
    background: white;
    max-width: 400px;
    height: auto;
    max-height: 600px;
    margin: auto;
    padding: 28px;
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    position: relative;
    overflow: hidden;
}

.slide {
    width: 100%;
    height: 500px;
    margin: 0 auto;
    position: relative;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 3px;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

.slide img.active {
    opacity: 1;
    visibility: visible;
}
