/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
/* Bone Hand - https://www.cursors-4u.com/cursor/bone-hand */
* {
  cursor: url('https://cdn.cursors-4u.net/previews/bone-hand-a5514fe0-64.webp') 16 16, auto !important;
}

.side-borders {
  padding-left: 400px;
  padding-right: 400px;

  background-image:
    url('https://thebacksidesmiths.neocities.org/tony-hawks-pro-skater-3-gamecube.gif'),
    url('https://thebacksidesmiths.neocities.org/17-12-42-102_512.gif');

  background-repeat: repeat-y, repeat-y;
  background-position: left top, right top;
  background-size: 400px auto, 400px auto;
}

/* Phone/tablet */
@media screen and (max-width: 800px) {
  .side-borders {
    padding-left: 10px;
    padding-right: 10px;

    background-image: none;
  }
}
/* End www.Cursors-4U.com Code */
.my-element {
  background-color: #0c9fbc; /* 6-digit hex code */
}
body {
  background-color:  #0c9fbc;
  color: black;
  font-family: Verdana;
}
/* Base styles (Desktop view) */
.container {
  width: 1200px;
}
@media screen and (max-width: 800px) {

  body {
    margin: 0;
    padding: 0;
    font-size: 16px;
  }

  h1 {
    font-size: 36px !important;
    line-height: 1.1;
  }

  p {
    font-size: 18px !important;
    line-height: 1.5;
  }

  img {
    max-width: 100%;
    height: auto;
  }

  iframe {
    max-width: 100%;
  }

  ul {
    padding-left: 20px;
  }

}
