body,
html {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    height: 100%;
    background: url("https://i.ibb.co/hK0hnbs/bg04.jpg");
    background-size: auto;
    background-repeat: repeat;
    background-attachment: fixed;
    background-position: top left;
    color: #ffe32a;
}

p {
    color: #b91c0c;
}

header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.5);
    transition: background 0.5s;
}
header nav {
    display: flex;
    justify-content: center;
    padding: 10px;
}
header nav img.logo {
    width: 200px;
}


main {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
    text-align: center;
}

.welcome-container {
    background: rgba(19, 19, 19, 0.8);
    padding: 40px;
    border-radius: 8px;

    .home-icon {
        opacity: 0.5;
        font-size: 2em;
        color: #ffe32a;
        padding: 15px;
        border-radius: 50px;
        margin-bottom: 10px;
        background: rgba(19, 19, 19, 0.8);
    }
    #visitor-counter {
        opacity: 0.4;
        margin-top: 20px;
        padding-top: 10px;
        padding-bottom: 10px;
        font-size: 1.2em;
        background: rgba(19, 19, 19, 0.8);
    }
}

footer {
    text-transform: uppercase;
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.9);
    color: #fdfafa;
    text-align: center;
    padding: 10px;
    font-size: 0.9em;
    p {
        color: #fff;
        font-size: 8pt;
        opacity: 0.3;
    }
}

.sticky {
    background: rgba(0, 0, 0, 0.9);
}
