@import url(https://fonts.bunny.net/css?family=alice:400|fira-code:400);

* {
    border: 0;
    padding: 0;
    margin: 0;
}

a, a:visited{
    color: #000;
    font-weight: bold;
    font-size:.9em;
    font-family: 'Fira Code', monospace;
}

body {
    background: #cccccc;
    color: #333;
    font-family: 'Alice', serif;
}

.page {
    display:flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    height: 100%;

    text-align: center;

    opacity: 1;
    transition: all 1s;
}

.init .page {
    opacity: 0;
}

/*
.mainHeader {
    background-image: url(logo.svg);
    background-repeat: no-repeat;
    background-size: calc(128px - 1rem);
    background-position: center top;
    padding-top: 128px;
}*/

.mainHeader__title {
    font-size: 2rem;
    line-height: 1.3em;
}









.socialList__item {
    list-style-type: none;
    display: inline-block;
    line-height: 1.3em;
}

.socialList__item::after {
    content: " | ";
}

.socialList__item:last-child::after {
    content: "";
}