@import url(main.css);

body {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-image: url(../assets/wallpaper.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
    z-index: 0;
}

/* Dark overlay */
body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background-color: rgba(0, 0, 0, 0.44);
    /* Adjust opacity here */
    z-index: -1;
}

.container {
    text-align: center;
    color: white;
    margin-top: -3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.container .logo {
    height: 150px;
    width: 150px;
    background-image: url(../assets/logo111.png);
    align-self: center;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.container h1 {
    color: white;
    font-size: 2.5rem;
    font-family: Lobster;
}

.container p {
    font-family: ComicNueu;
    padding: 10px 0;
    font-size: 1.5rem;
}