html
{
    height: 100%;
}

@font-face { font-family: Fieldwork; src: url('fieldwork-geo-regular.otf'); }

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100%;
    font-size: 1.2rem;
    color: #163D67;
    font-family: Fieldwork;
    display: flex;
    justify-content: center;
    background: linear-gradient(45deg, rgba(255,255,255,1) 0%, rgba(207,225,244,1) 100%);
}

a {
    text-decoration: none;
    color: #163D67;
}

img {
    max-width: 100%;
}

.container
{
    margin: auto;
    width: 100%;
    max-width: 1600px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.objects {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 100px;
}

.button {
    padding: 10px 15px;
    border-radius: 5px;
    border: 2px solid #163D67;
    transition: .2s ease;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    color: #163D67;
}

.button svg {
    width: 20px;
}

.button:hover {
    background: #163D67;
    color: white;
}

@media(max-width: 768px) {
    .container {
        gap: 50px;
    }

    .objects {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}