﻿.error-component {
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(120deg, #82CBD1, #4BBBBC);
}

.error-plane {
    height: 180px;
    margin-top: 3rem;
    animation: plane-twitch 2s ease-in infinite;
    transform-origin: center bottom;
}

.error-component > h1, .error-component > h2 {
    color: white;
    font-family: 'Louis George Cafe';
    font-size: 3rem;
}

.error-component > h2 {
    font-size: 2rem;
}

@keyframes plane-twitch {
    0% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(3deg);
    }

    100% {
        transform: rotate(0deg);
    }