@font-face {
    font-family: "Gulax-Regular";
    src: url('Gulax-Regular.woff2') format('woff2'),
         url('Gulax-Regular.woff') format('woff');
}

* {
    box-sizing: border-box;
}
html {
    scroll-snap-type: y mandatory;
    overflow-y: scroll;
  }
html, body {
    height: 100%;
}
body {
    font-family: "Gulax-Regular", sans-serif;
    margin: 0;
    padding: 0;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1 {
    font-family: "Gulax-Regular", sans-serif;
    font-size: 4em;
    text-align: center;
    margin: 20px;
    color: rgb(28, 124, 157);
}



.page {
    width: 100%;
    height: 100vh;
    background: white;
    display: flex;
    justify-content: center;
    padding: 20px;
    scroll-snap-align: start;

}

.left img {
   object-position: left;
}

.right img {
    object-position: right;
}

.page img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.the-end {
    padding: 0;
}
.the-end img {
    object-fit: cover;
}