/* Add this CSS to your <style> section or an external stylesheet */

:root {
    --cyan: #12c6ffe6
}

html,
body {
    background: url('fortune app studio poster.png') no-repeat center center fixed;
    background-size: cover;
    color: aqua;
}

/* Sticky Bottom Navbar */
.navbar-fixed-bottom {
    position: fixed;
    bottom: 0;
    width: 100%;
}

.navbar {
    position: fixed;
    width: -webkit-fill-available;
}

main {
    flex: 1;
}

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* Transparent black */
    color: white;
    text-align: center;
    padding: 10px 0;
}

.centered-button {
    /* display: flex; */
    justify-content: center;
    align-items: center;
    /* height: 100vh; */
}

/* Transparent Navbar and Footer */
.transparent-bg {
    background-color: rgba(0, 0, 0, 0.8);
    /* 0.5 transparent black */
}