@import url("https://fonts.googleapis.com/css2?family=Jersey+25&family=Madimi+One&family=Poppins&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --jersey-25-regular: "Jersey 25", sans-serif;
  --poppins-regular: "Poppins", sans-serif;
  --madimi-one-regular: "Madimi One", sans-serif;
}
::selection {
  color: white;
  background-color: #0000ee;
}
html {
  scroll-behavior: smooth;
}
body {
  position: sticky;
  height: 100vh;
  font-family: Arial, sans-serif;
  background-color: #f1e9e9;
  padding-top: 100px;
}
h1 {
  font-family: var(--madimi-one-regular);
  font-size: 30px;
}
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  background-color: white;
  color: #0000ee;
  width: 100%;
  font-family: cursive;
  text-align: center;
  top: 0;
  left: 0;
  position: fixed;
  z-index: 1000;
  height: 100px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
}

nav ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

nav ul li {
  list-style: none;
  margin: 10px 25px;
}

nav ul li a {
  color: black;
  text-decoration: none;
  font-family: var(--poppins-regular);
}

nav ul li a:hover {
  color: #0000ee;
  border-bottom: 2px solid #0000ee;
}

section {
  background-color: #fff;
  margin: 20px auto;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
  width: 90%;
}

footer {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: black;
  color: white;
  text-align: center;
  padding: 20px 0;
  width: 100%;
  font-family: var(--poppins-regular);
  font-size: 15px;
}
._container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  font-family: var(--poppins-regular);
}
._container img {
  aspect-ratio: 16/9;
  height: 350px;
  width: 350px;
  border-radius: 20px;
  margin: 0 50px !important;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
}
.right {
  flex-direction: row-reverse !important;
}

@media screen and (max-width: 900px) {
  ._container {
    flex-direction: column !important;
    text-align: justify;
  }
  ._container img {
    margin: 20px 0 !important;
    height: 200px;
    width: 300px;
  }
  nav ul li {
    margin: 10px 3px !important;
  }
}
