*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Spectral", serif;
}

.content{
    margin-top: 8rem;
    margin-bottom: 16rem;
    width: 100%;
    max-width: 760px;

    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contacts{
    display: flex;
    flex-direction: row;
    margin-top: -1rem;
    gap: 1rem;
}

.contacts a {
    font-size: 16px;
    line-height: 147%;
    text-decoration: none;
}

.content p {
    font-size: 24px;
    line-height: 147%;
}

.content p a {
    text-decoration: none;
}

.content p span {
    color: rgba(0,0,0,0.5);
    font-size: 14px;
    font-weight: 400;
    line-height: 100%;
}

a:visited{
    color: #0000EE
}


@media screen and (max-width: 880px) {
    .content{
        padding: 16px;
        margin-top: 0;
        margin-bottom: 10rem;
    }
}
