/* ===== Base / resets ===== */

* {
  box-sizing: border-box; /* width calculations include padding/border, everywhere */
}

html, body {
  overflow-x: hidden; /* prevent horizontal scroll */
}

body {
  background-image: url('winter1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  color: rgb(247, 6, 255);
  font-family: sans-serif;
}

img {
  max-width: 100%;
  height: auto; /* prevents any image from overflowing its container by default */
}

a {
  color: #f772e0;
  text-decoration: wavy;
  cursor: url('Link Select.cur'), pointer;
}