@font-face {
    font-family: 'MartianGrotesk';
    src: url('MartianGrotesk-CnRg.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    margin: 0;
    height: 100%;
    width: 100%;
    background-color: #000;
    font-family: "MartianGrotesk";
    display: flex;
    flex-direction: column;
    align-items: center;
    text-transform: uppercase;
    overflow: hidden;
}

header {
    width: 100%;
}

.header-image img {
    width: 100%;
}

.container {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.left-image, .right-image {
    max-height: 100%;
    width: min(300px, 20%);
}

main {
    flex: 1;
    margin-top: 5pt;
    text-align: center;
}

img {
    width: 100%; /* Можно изменить размер изображения */
    height: auto;
}

.first {
    margin-top: 10pt !important;
}

.link {
    font-size: 20pt;
    margin-top: 0;
    margin-bottom: 20pt;
    margin-left: auto;
    margin-right: auto;
    border-radius: 50vh;
    width: 50%;
    height: 30pt;
    background-color: #87C8FF;
}

.link > a:link,
.link > a:visited  {
    color: #F22E3E; 
}

.grid-table {
    display: grid;
    grid-template-columns: 1fr 2fr 2fr;
    width: 95%;
    margin: auto;
}

.grid-table > div {
    color: white;
    padding: 10px;
    background-color: #F22E3E;
    border-radius: 50vh;
    margin: 10px;
    
    text-align: center;
}

.grid-table > div a:link,
.grid-table > div > a:visited  {
    color: white; 
}

.bottom {
    position:sticky;
    bottom: 0;
    padding-bottom: 10px;
    margin: auto;
    width: 50%;
}

.grid-header {
    background-color: #87C8FF !important;
    color: #000 !important;
}