@font-face {
    font-family: "M-black";
    src: url(assets/font/Montserrat/Montserrat-Black.ttf);
}

@font-face {
    font-family: "M-bold";
    src: url(assets/font/Montserrat/Montserrat-Bold.ttf);
}

@font-face {
    font-family: "M-Medium";
    src: url(assets/font/Montserrat/Montserrat-Medium.ttf);
}

@font-face {
    font-family: "M-regular";
    src: url(assets/font/Montserrat/Montserrat-Regular.ttf);
}

@font-face {
    font-family: "M-Light";
    src: url(assets/font/Montserrat/Montserrat-Light.ttf);
}

* {
    font-family: M-regular;
    transition: all 0.3s;
    box-sizing: border-box;
}

html {
    min-height: 100%;
    position: relative;
    scroll-behavior: smooth;
}

html body {
    background: rgb(255, 249, 249);
    margin: 0%;
    margin-bottom: 200px;
    overflow-x: hidden;
}

/*... */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: M-Medium;
    line-height: 0.8em;
}

p {
    font-family: M-Light;
}

span,
small,
label,
a {
    font-family: "M-Light";
}

strong {
    font-family: M-bold;
}

a,
button {
    cursor: pointer;

    overflow: hidden;
    padding: 0px;

    display: flex;
    justify-content: center;
    align-items: center;
}

button {
    border: none;
    background: transparent;
}

a {
    color: black;
    text-decoration: none;
}
