/* Default styles for mobile devices (0px to 1199px) */
html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

body {
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  background: linear-gradient(0deg,rgba(238, 174, 202, 1) 0%, rgba(148, 187, 233, 1) 100%);
}

.intro {
  height: auto;
  width: auto;
  font-size: medium;
  margin: 10% 10%;
  font-size: 3rem;
}

a {
  color: rgb(31, 94, 231);
  text-decoration: underline wavy;
}

.clippy {
  margin-left: 80%;
  height: 25%;
  width: 25%;
}

/* Styles for larger screens (1200px and up) */
@media (min-width: 1200px) {
  html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
  }

  body {
    color: white;
    background: linear-gradient(0deg,rgba(238, 174, 202, 1) 0%, rgba(148, 187, 233, 1) 100%);
  }

  .intro {
    height: auto;
    width: auto;
    margin: 10% 30%;
    font-size: 1rem;
  }

  a {
    color: rgb(31, 94, 231);
    text-decoration: none;
  }

  a:hover {
    text-decoration: underline wavy;
  }

  .clippy {
    margin-left: 80%;
    height: 20%;
    width: 20%;
  }

  .clippy:hover {
    cursor: wait;
  }
}