*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
    background-color: #15181D;
    overflow-x: hidden;
}

.newsstand-backdrop {
    background-image: url("./img/hero-image.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.animate-fadeIn {
  animation: fadeIn 0.25s ease-in forwards;
}