body {
    font-size: 20px;
}

.container {
    max-width: 372px;
    padding: 0 16px;
    box-sizing: border-box;
}

.note {
    margin: 40px 0;
}

h1 {
    font-size: 36px;
}

.header__wrap {
    display: flex;
    
    & .header__logo {
        width: 110px;
        height: 129px;
        margin-right: 30px;

        img {
            width: 100%;
            height: 100%;
        }
    }

    & .header__info {
        display: flex;
        flex-direction: column;
        margin-top: 10px;

        & .title {
            font-size: 32px;
            font-weight: 700;
        }

        & .copyright {
            font-size: 14px;
            margin-top: auto;
            margin-bottom: 10px;
        }
    }
}

.footer {

    & .footer__wrapper {
        border-top: 1px dashed black;
        padding: 15px 0 25px 0;
    }
    
}

.maksim {
    
    animation: shacker 0.4s ease-out infinite;
}

@keyframes shacker {
    0% {
        transform: rotate(0);

    } 
    25% {
        transform: rotate(-5deg);
    }
    50% {
        transform: rotate(0);
    }
    75% {
        transform: rotate(3deg);
    }
    100% {
        transform: rotate(0);
    }
}