@import "./styles/reset.css";

/* Add global styles here */

html,
body {
  height: 100%;
  margin: 0;
}

body {
  background-color: rgb(0, 0, 0);
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  display: flex;
  flex-direction: column;
  justify-items: center;
  align-items: center;
}

a {
  color: inherit;
  text-decoration: none;
}

a:visited {
  color: inherit;
}

a:hover,
a:focus {
  text-decoration: none;
}

/* Breakpoints for responsive css */

/* Small devices (phones in portrait mode) */
@media (min-width: 320px) {
  /* Styles for small devices */
  img {
    width: 275px;
    height: auto;
  }

  h1 {
    font-family: "New Gothic Style";
    color: red;
    font-size: 2rem;
    letter-spacing: 1rem;
    padding-left: 0.5rem;
    padding-top: 0.5rem;
  }

  h2 {
    font-family: "New Gothic Style";
    color: blue;
    font-size: 1.5rem;
    letter-spacing: 0.5rem;
    padding-left: 0.5rem;
    padding-top: 1rem;
  }
}

/* Medium devices (phones in landscape mode or smaller tablets) */
@media (min-width: 480px) {
  /* Styles for medium devices */
  img {
    width: 350px;
    height: auto;
  }

  h1 {
    font-family: "New Gothic Style";
    color: red;
    font-size: 3rem;
    letter-spacing: 2rem;
    padding-left: 1.75rem;
    padding-top: 1rem;
  }

  h2 {
    font-family: "New Gothic Style";
    color: blue;
    font-size: 2rem;
    letter-spacing: 0.75rem;
    padding-left: 0.5rem;
    padding-top: 1rem;
  }
}

/* Larger phones or small tablets */
@media (min-width: 600px) {
  /* Styles for larger phones or small tablets */
  img {
    width: 400px;
    height: auto;
  }

  h1 {
    font-family: "New Gothic Style";
    color: red;
    font-size: 4rem;
    letter-spacing: 2rem;
    padding-left: 1.75rem;
    padding-top: 1rem;
  }

    h2 {
    font-family: "New Gothic Style";
    color: blue;
    font-size: 2.5rem;
    letter-spacing: 0.75rem;
    padding-left: 0.5rem;
    padding-top: 1rem;
  }
}

/* Tablets */
@media (min-width: 768px) {
  /* Styles for tablets */
}

/* Small desktop or large tablets in landscape */
@media (min-width: 1024px) {
  /* Styles for small desktops or larger tablets */
}

/* Laptops and desktops */
@media (min-width: 1280px) {
  /* Styles for laptops and desktops */
}

/* Larger desktops */
@media (min-width: 1440px) {
  /* Styles for larger desktops */
}

/* Very large screens */
@media (min-width: 1920px) {
  /* Styles for very large screens (4K and above) */
}

/* UTILITY STYLES */
.no-select {
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

/* CURSOR */
* {
  cursor: url(https://cur.cursors-4u.net/symbols/sym-2/sym147.cur), auto !important;
}
