* {
    margin: 0;
    padding: 0;    
}

body {
    padding: 0 17.7vw;
    background: var(--bg-color);
}

header {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: var(--box-color);
    border-radius: 10px;
}

.logo {
    display: flex;
    gap: 10px;
    align-items: center;
    text-decoration: none;
}

span.logo__text {
    font-family: 'Matura';
    font-size: var(--logo-text-font-size);
    color: var(--accent-color);
}

span.error,
span.success {
    color: red;
    font-size: 20px;
    font-family: "Consolas";
    font-weight: bold;
}

span.success, span.success > a {
    color: greenyellow;
}

.auth__links {
    display: flex;
    gap: 10px;
}

.auth__links > a {
    font-weight: bold;
    font-family: 'Consolas';
    font-size: 24px;
    color: var(--accent-color);
    text-underline-offset: 3px;
    line-height: 70%;
}

.user__cont {
    display: flex;
    gap: 10px;
    align-items: center;
}

.user__cont > img {
    border: 1px solid var(--accent-color);
    border-radius: 10px;
}

.user__block {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.user__block > a {
    color: var(--accent-color);
    font-family: "Consolas";
    font-size: 24px;
    font-weight: bold;
    text-underline-offset: 3px;
    text-align: right;
}

.user__block > span {
    color: var(--accent-color);
    font-family: 'Consolas';
    font-size: 20px;
    font-weight: bold;
}

footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: var(--box-color);
    border-radius: 10px;
}

.footer__left-side {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__left-side > span,
.footer__link {
    font-family: 'Consolas';
    font-weight: bold;
    color: var(--accent-color);
    font-size: 20px;
}

.footer__right-side {
    display: flex;
    gap: 20px;
}

.footer__right-block {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__link {
    text-underline-offset: 5px;
    text-align: right;
}


