@font-face {
    font-family: 'Likely Regular';
    src: url("/fonts/likely-regular-webfont.ttf");
}

@font-face {
    font-family: 'Futura Condensed';
    font-weight: 500;
    src: url("/fonts/Futura Condensed Medium.otf");
}

@font-face {
    font-family: 'Futura Condensed';
    font-weight: 700;
    src: url("/fonts/Futura Condensed Extra Bold.otf");
}

body {
    margin: 0;
    padding: 0;
    background: url("/pictures/background.png") no-repeat fixed;
    background-size: cover;
    color: #ffffff;
    overflow: hidden;
}

a {
    text-decoration: none;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

canvas {
    z-index: 99 !important;
}

@keyframes zoomInOut {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.zoom-in-out {
    animation: zoomInOut .4s;
}

.container-fluid {
    padding-top: 2em;
    margin-right: auto;
    margin-left: auto;
    padding-right: 3rem;
    padding-left: 3rem;
}

.flex-container {
    display: flex;
    min-height: 95vh;
    margin: auto 0;
    align-items: center;
}

.flex-container .left-side {
    flex: 35%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.flex-container .left-side .website-link-block {
    text-align: center;
}

.flex-container .left-side .website-link-block .website-link {
    font-family: 'Likely Regular', sans-serif;
    color: #fd216d;
    font-size: 36px;
}

.flex-container .playground {
    flex: 65%;
}

.app-content .title {
    text-align: center;
    color: #93367A;
    font-family: 'Futura Condensed', sans-serif;
    font-size: 2em;
    font-weight: 700;
    margin: 0 0 .25rem;
}

.app-content .logo-text {
    text-align: center;
    color: #000;
    font-family: 'Sacramento', cursive;
    font-size: 5rem;
    font-weight: 400;
    margin: 0;
    white-space: nowrap;
}

.app-content .subtitle {
    color: #93367A;
    font-family: 'Futura Condensed', sans-serif;
    font-size: 2em;
    text-align: center;
    font-weight: 700;
    margin: 0;
}

.app-content .description {
    padding: 0 12px;
    text-align: center;
    font-family: 'Futura Condensed', sans-serif;
    font-size: 21px;
    font-weight: 500;
    color: #000;
    margin: 10px 0 20px;
}

.app-content .form-box {
    text-align: center;
    background-color: #fff;
    border-radius: 10px;
    padding: 1em;
    box-shadow: 2px 3px 8px rgba(0, 0, 0, .1);
    -webkit-box-shadow: 22px 3px 8px rgba(0, 0, 0, .1);
    margin-bottom: 26px;
}

.app-content .form-box .title {
    color: #93367A;
    line-height: 1.5;
    text-transform: uppercase;
    font-family: 'Futura Condensed', sans-serif;
    font-size: 1.25em;
    font-weight: 500;
    margin: 0;
    margin-bottom: 6px;
}

.app-content .form-box .description {
    text-align: center;
    font-family: 'Futura Condensed', sans-serif;
    font-size: 1.25em;
    color: #000;
    font-weight: 500;
    line-height: 1.5;
    margin: 0;
    margin-bottom: 6px;
}

.app-content .form-box form .input-text {
    width: 130px;
    color: #ffffff;
    background: #eed0da;
    font-family: 'Roboto', Helvetica, sans-serif;
    font-size: 1em;
    font-weight: 400;
    border: 1px solid #E2EAF0;
    border-radius: 4px;
    padding: 10px 10px;
    margin: 0 15px 15px 0;
}

.app-content .form-box form {
    font-size: 13px;
}

.app-content .form-box form .input-text::placeholder {
    color: #ffffff;
}

.app-content .form-box form .input-text:focus {
    outline: none;
}

.app-content .form-box form #input-url {
    display: none;
}

.app-content .form-box form #btn-copy {
    position: relative;
    background-color: #2be18a;
    border-radius: 4px;
    color: #ffffff;
    font-family: 'Roboto', Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 11px 16px;
    text-decoration: none;
    border: none;
}

.app-content .form-box form #btn-copy:focus {
    outline: none;
}

.app-content .form-box form #btn-copy:hover {
    cursor: pointer;
}

.app-content .form-box form #btn-copy .btn-tooltip {
    width: 100%;
    background-color: rgba(145, 163, 176, .9);
    color: #fff;
    font-size: .75em;
    text-align: center;
    border-radius: 4px;
    padding: 0.3125em;
    position: absolute;
    z-index: 1;
    bottom: 100%;
    left: 0;
    margin: 0 auto 12px auto;
    opacity: 0;
    transition: opacity 1s;
}

.app-content .form-box form #btn-copy:hover .btn-tooltip {
    opacity: 1;
    visibility: visible;
}

.app-content .subform-text {
    color: #fd216d;
    font-family: 'Likely Regular', sans-serif;
    font-size: 2em;
    text-align: center; 
    font-weight: 100;
}

.playground {
    display: flex;
    justify-content: center;
    align-items: center;
}

.align-stretch {
    align-items: stretch;
}

.playground .circle-side {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.playground .hearts-counter {
    border-radius: 10px;
    text-transform: capitalize;
    font-family: 'Futura Condensed', sans-serif;
    padding: 8px 12px;
    min-width: 5em;
    right: 1em;
    top: 1em;
    position: absolute;
    text-align: center;
    z-index: 100;
    background: #f000648f;
    border: 1px solid #000;
    color: #fff;
    font-size: 22px;
    box-shadow: 0 0 2px #000;
}

.playground .circle {
    z-index: 100;
    left: -20px;
    border-radius: 50%;
    background: rgba(190, 244, 237, .69);
    width: 32em;
    height: 32em;
    margin: 70px 0;
}

.playground .img-heart {
    z-index: 101;
    position: absolute;
    width: 24em;
    height: 23em;
    right: 3em;
    top: 23%;
}

@media only screen and (max-width: 991px) {
    body {
        overflow-y: auto;
        overflow-x: hidden;
    }

    .playground .circle {
        z-index: 100;
        left: -20px;
        border-radius: 50%;
        width: 22em;
        height: 22em;
        margin: 70px 0;
    }
    
    .playground .img-heart {
        z-index: 101;
        position: absolute;
        width: 17em;
        height: 17em;
        right: 7%;
        top: 23%;
    }
    
    .flex-container {
        margin-bottom: 4em;
        flex-direction: column-reverse;
        justify-content: center;
    }
}

.flex-center-box {
    display: flex;
    justify-content: center;
}

@media screen and (max-width: 525px) {
    .playground .circle {
        width: 20em;
        height: 20em;
    }

    .container-fluid {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}
