body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
    background: url('../../public/assets/bg.jpg') no-repeat center center fixed;
    background-size: cover;
    height: 100vh;
    overflow: hidden; /* This removes scroll bar */
    color: white;
    text-align: center;
    position: relative;
}

.container {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
}

.container h1 {
    font-size: 2rem;
    color: white;
    background-color: rgba(0, 0, 50, 0.8);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px #00f7ff;
}
