* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: url('imgs/cursor.png'), auto;
}

body {
    font-family: 'ITC Clearface Std', serif;
    background-color: #F8EAAB;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #1F0F0F;
}

.container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 10px;
}

.date {
    font-size: 156px;
    font-family: 'ITC Clearface Std', serif;
    color: #1F0F0F;
    font-weight: 400;
    letter-spacing: -0.05em;
    line-height: 1;
    opacity: 0;
}

.main-title {
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.playground-stretch {
    max-width: 100%;
    height: 96vh;
    width: 98vw;
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    filter: url('#squiggle');
    animation: squiggle 500ms linear infinite;
    opacity: 0;
}

@keyframes squiggle {
    0% {
        filter: url('#squiggle-1');
        transform: translateY(-50%);
    }
    25% {
        filter: url('#squiggle-2');
        transform: translateY(-50%);
    }
    50% {
        filter: url('#squiggle-3');
        transform: translateY(-50%);
    }
    75% {
        filter: url('#squiggle-4');
        transform: translateY(-50%);
    }
    100% {
        filter: url('#squiggle-1');
        transform: translateY(-50%);
    }
}

.playground-wordmark {
    max-width: 100%;
    height: auto;
    width: 98vw;
    max-height: 90vh;
    position: absolute;
    top: 40%;
    left: 20px;
    opacity: 0;
}

.save-date {
    font-size: 156px;
    font-family: 'ITC Clearface Std', serif;
    color: #1F0F0F;
    font-weight: 400;
    letter-spacing: -0.05em;
    line-height: 0.6;
}

.event-by {
    font-size: 32px;
    color: #1F0F0F;
    font-weight: 400;
    text-align: right;
    font-family: 'Archivo Narrow', sans-serif;
    letter-spacing: -0.05em;
    line-height: 1;
    z-index: 100;
}

a, a:link, a:visited, a:hover, a:active {
    text-decoration: none;
    color: #1F0F0F;
    text-underline-offset:5px;
    transition: all 500ms ease-in-out;
    cursor: url('imgs/cursor.png'), pointer !important;
}

.event-by a:hover {
    text-decoration: underline !important;
    cursor: url('imgs/cursor.png'), pointer !important;
}

.bottom-text {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    padding: 0;
    opacity: 0;
}


.top-left {
    top: 40px;
    left: 40px;
}

.bottom-right {
    bottom: 40px;
    right: 40px;
}

@media (max-width: 768px) {
    
    .main-title {
        font-size: 4rem;
        -webkit-text-stroke: 2px #2c3e50;
        overflow: hidden;
    }

    .date {
       padding-top: 28vh;
    }
    
    .date, .save-date {
        font-size: 3.5rem;
        line-height: 1;
    }

    .event-by {
        font-size: 18px;
    }

    .playground-stretch {
        height: 50vh;
        width: 90%;
        max-height: 300px;
    }

    .playground-wordmark {
        width: 90%;
    }

    .bottom-text {
        padding-bottom: 25vh;
        flex-direction: column;
        align-items: flex-end;
    }

}
