@import url('https://fonts.googleapis.com/css2?family=Golos+Text:wght@400..900&display=swap');
:root{
}


* {
    font-family: "Golos Text", sans-serif;
    font-optical-sizing: auto;
}

html {
    font-size: 16px;
}

html, body{
    padding: 0px;
    margin: 0px;
}

.title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #343a40;
    width: 100vw;
}


h1, h2 {
    color: #ffffff;
    text-align: center;
}

.flex-row {
    display: grid;
    grid-template-columns: minmax(2vw, 6vw)  auto 15vw 15vw 30vw;
}

.flex-cell {
    display: flex;
    border: 1px solid #000;
    padding: 5px;
    font-size: clamp(8px, 3vw, 16px);
}

.flex-cell:nth-child(1){
    text-align: center;
}

.flex-cell ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

.flex-cell a{
    text-decoration: none;
}



