/* FONTS */
@font-face {
    font-family: "Robo";
    src: url(./asset/fonts/Roboto/Roboto-VariableFont_wdth,wght.ttf) format('ttf');
}
body * {
    font-family: "Roboto";
}
.f-regular {
    font-family: "Roboto";
    font-weight: 400;
}
.f-medium {
    font-family: "Roboto";
    font-weight: 500;
}


.d-flex {
    display: flex;
}
.justify-content-center {
    justify-content: center;
}
.align-items-center {
    align-items: center;
}
.flex-column {
    flex-direction: column;
}
.vw100 {
    width: 100vw;
}
.vh100 {
    height: 100vh;
}

.text-center {
    text-align: center;
}

.btn {
    padding: 16px;
    text-decoration: none;
    font-size: 1.1em;
    border-radius: 4px;
}
.btn-primary {
    background-color: #000;
    color: #fff;
    text-transform: uppercase;
}