
@font-face {
    font-family: 'jost';
    src: url("../Jost-Italic-VariableFont_wght.ttf") format('truetype');
}

@font-face {
    font-family: 'cat';
    src: url("../Catamaran-VariableFont_wght.ttf") format('truetype');
}

@font-face {
    font-family: 'osw';
    src: url("../Oswald-VariableFont_wght.ttf") format('truetype');
}
.item{
    transition: all;
}
.item:hover{
    transform: scale(1.2);
}
.list {
    font-family: 'osw', sans-serif;
}
html,body{
    padding: 0;
    margin: 0;
}
.flex_x{
    display: flex;
}
.between{
    justify-content: space-between;
}
.around{
    justify-content: space-around;
}
.start{
    justify-content: flex-start;
}
.pos_r{
    position: relative;
}
.pos_a{
    position: absolute;
}
.font_blod{
    font-weight: bold;
}
.end{
    justify-content: flex-end;
}
.txt_center{
    text-align: center;
}
a{
    color: #fff;
    text-decoration: none;
}