@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat/static/Montserrat-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat/static/Montserrat-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat/static/Montserrat-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

body{
    /* display: flex;
    flex-direction: column; */
    height: 100vh;
    width: 100%;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: black;
}

html {
    scroll-behavior: smooth;
    scroll-snap-type: proximity;
}

h1, h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

span {
    font-weight: 700;
}
button {
    background-color: hsla(50, 100%, 73%, 45%);
    font-weight: 700;
    font-size: 1.2rem;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    color: black;
    border-radius: 12px;
    box-shadow: 10px 10px 10px hsla(50, 100%, 73%, 25%);
}
  
button:hover {
    background-color: hsla(50, 100%, 73%, 65%);
    color: white;
}

/* ::-webkit-scrollbar{
    width: 6px;
    height: 6px;
} */