@import url("https://fonts.googleapis.com/css2?family=Montserrat&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-tap-highlight-color: transparent;
}

html {
    height: 100%;
    /* overscroll-behavior-y: none; */
}

html,
body {
    overscroll-behavior-x: none;
}

body {
    height: 100svh;
    background-color: #282d2d;
    background-image: url('../img/background.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

h1 {
    position: fixed;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: Montserrat, sans-serif;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #dcdde1;
}