﻿@font-face {
    font-family: 'Licorice-Regular';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/assets/fonts/Licorice-Regular.ttf') format('truetype');
}

.logo {
    font-weight: 800;
    background-image: url(/logo.png);
    background-size: cover;
    position: relative;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-repeat: round;
    animation: bounceDrop 1.8s ease-out forwards;
    font-family: 'Licorice-Regular', cursive;
    word-break: keep-all;
}

@media (min-width: 200px) {
    .logo-cont {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .logo {
        height: 82px;
        width: 218px;
        font-size: 43px;
        letter-spacing: 2px;
        margin-left: 0px;
    }
}

@media (min-width: 768px) {
    .logo {
        margin-left: 0px;
    }

    .logo-cont {
        width: auto;
        display: block;
    }
}

@media (min-width: 1100px) {
    .logo {
        margin-left: 0px;
    }
}

@media (min-width: 1300px) {
    .logo {
        margin-left: 0px;
    }
}

@media (min-width: 1800px) {
    .logo {
        margin-left: 20px;
    }
}

@keyframes bounceDrop {
    0% {
        transform: translateY(-300px) rotate(-30deg);
    }

    20% {
        transform: translateY(0) rotate(0deg);
    }

    35% {
        transform: translateY(-60px) rotate(5deg);
    }

    50% {
        transform: translateY(0) rotate(0deg);
    }

    65% {
        transform: translateY(-30px) rotate(-3deg);
    }

    80% {
        transform: translateY(0) rotate(0deg);
    }

    90% {
        transform: translateY(-10px) rotate(1deg);
    }

    100% {
        transform: translateY(0) rotate(0deg);
    }
}
