@import "./reset.css";

/* Root styles */

:root {
  /* Global default styles */
  --webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Layout base */
.container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}

.flex-wrapper {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 1rem;
  gap: 1rem;
}

.wrapper {
  margin: 1rem 0;
  padding: 0.5rem;
}

/* Retro vibes */
body {
  background: url("https://www.transparenttextures.com/patterns/stardust.png") repeat,
              #0000aa;
  color: #fff;
  font-family: "Comic Sans MS", "Arial Black", sans-serif;
  text-align: center;
}

a {
  color: yellow;
  text-decoration: underline;
}

a:hover {
  color: cyan;
}

.heading-one {
  font-size: 2.5rem;
  font-weight: bold;
  color: lime;
  text-shadow: 2px 2px 0 #000, 4px 4px 0 #ff00ff;
}

.paragraph {
  font-size: 1rem;
  line-height: 1.4;
}

img {
  border: 4px solid #ff00ff;
  box-shadow: 4px 4px 0 #000;
  max-width: 200px;
}

marquee {
  font-size: 1.2rem;
  color: #ff0;
  background: #000;
  padding: 0.5rem;
  border: 3px ridge #ff0;
}

ul {
  list-style: square;
  background: rgba(255, 0, 255, 0.3);
  border: 3px groove lime;
  padding: 1rem;
  display: inline-block;
}

li {
  margin: 0.3rem 0;
}