/*ТЕЛА*/
body {
    background-color: rgb(233, 235, 223);
    max-width: 800px;
    width: 100%;
    padding: 16px;
    box-sizing: border-box;
    margin: 0 auto;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
}
.centeredText {
    text-align: center;
}

/*ШРИФТЫ*/
.rem1_1 {
    font-size: 1.1rem;
}
.rem1_2 {
    font-size: 1.2rem;
}

/*СТАТИКА*/
.server-address {
    text-decoration: underline;
}

/*ССЫЛКИ*/
a {
    font-size: 18px;
    transition: 0.2s;
    display: inline-block;

}
a:hover {
    color: brown;

    transform: scale(1.1);
}
.hiddenLink {
    color: inherit;
    text-decoration: none;
    font-size: inherit;
}
.hiddenLink:hover {
    color: inherit;
    transform: none;
}

/*КНОПКИ*/
.button {
    color: black;
    font-size: 18px;
    text-decoration: none;
    transition: 0.2s;
    border: 2px solid black;
    background-color: whitesmoke;
    margin: 1px;
    padding: 5px;
    display: inline-block;
    border-radius: 5px;
}
.button:hover {
    box-shadow: 3px 3px 0px gray;
    background-color: #b2c3c3;
}