@import url("https://fonts.googleapis.com/css2?family=Luckiest+Guy&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box; }

body {
  margin: 0;
  padding: 0;
  background: #2a2f42;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 18px; }

a {
  color: #27BBFF;
  text-decoration: none; }
  a:hover {
    text-decoration: underline; }

h1 {
  font-family: "Luckiest Guy", sans-serif;
  color: #F8DC0C; }

h2 {
  margin-top: 2rem;
  color: #EF5C92; }

h3 {
  color: #85BAE7; }

.container {
  max-width: 800px;
  margin: auto;
  padding: 16px;
  min-height: 100vh;
  background: #121420; }

.center {
  text-align: center; }

.responsive {
  width: 100%;
  height: auto; }

.rounded {
  border-radius: 8px; }

ul.nav {
  list-style-type: none;
  margin: 0;
  padding: 0; }

ul.nav li {
  display: inline;
  margin-right: 0.5rem; }

code {
  background: #111;
  padding: 4px; }

.iframe-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 56.25%;
  /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
  margin-bottom: 16px; }

.iframe-container > iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px; }

.mt-4 {
  margin-top: 4em; }
