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

body {
    font-family: Helvetica, sans-serif;
    line-height: 1.8;
}

.container {
    margin: 1rem;
    min-height: calc(100vh - 2rem);
    display: grid;
    justify-content: center;
    grid-template-rows: 1fr auto;
}

.page-link {
    color: inherit;
    text-decoration: none;
}

.main {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.links {
    display: flex;
    justify-content: space-evenly;
}

.link .img {
    display: inline-block;
    width: 2rem; 
    transition: all .4s; 
}

.link .img:active {
    transform: translateY(4px);
}

.footer-links {
    display: flex;
    justify-content: center;
}

.privacy {
    text-align: center;
}

.privacy ul {
    text-align: left;
    max-width: 280px;
    margin: 0 auto;
}

.server-data-list {
    margin-top: 2rem;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.server-data-list ul {
    margin-top: 1rem;
}

@media (min-width: 680px) {
    .privacy ul {
        max-width: 720px;
    }
    
    .container {
        margin: 2rem;
        min-height: calc(100vh - 4rem);
    }
}