@import "./header.scss"; @import "./main.scss"; @import "./footer.scss"; @import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap'); @import "~bootstrap/scss/bootstrap"; body { margin: 0; min-height: 100vh; max-width: 100vw; color: #eaf8ff; background-color: #0F131E; background: linear-gradient(to bottom, #111931 0%, #0f131e 100%); font-family: "Montserrat", sans-serif; display: flex; flex-direction: column; align-items: center; justify-content: center; position: relative; } body::before { content: ""; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-image: url('../images/bg_shape.png'); background-repeat: no-repeat; background-size: cover; background-position: center center; z-index: -1; opacity: 0.5; /* Added to make it less distracting */ } .notification-badge { background-color: red; color: white; border-radius: 50%; padding: 0.2em 0.5em; font-size: 0.75em; margin-left: 0.5em; }