@font-face {
    font-family: 'DaysOne';
    src:  url('DaysOne.ttf')  format('truetype'); /* Safari, Android, iOS */
}

h1 {
    font-size: 14em;
    font-family: 'DaysOne', sans-serif ;
    color: #F0F0F0;
    text-align: center;
}

h2 {
    font-size: 1em;
    font-family: 'DaysOne', sans-serif ;
    color: #F0F0F0;
    text-align: center;
}

.bg{
    background: #27B24C
}

footer {
    background: #333333;
    position:absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
}
.footerLinks {
    text-align: center;
}

nav {
    height: 40px;
    background: black;
    background: rgba(0, 0, 0, 0.9);
}
nav ul {
    padding: 0;
    width: 400px;
    margin: 0 auto;
}
nav ul li {
    list-style: none;
    font-family: arial;
    font-size: 15px;
}
nav ul li a {
    text-decoration: none;
    float: left;
    display: block;
    padding: 10px 20px;
    color: white;
}
nav ul li a:hover {
    color: #2a70d9;
}

ul.no-bullets {
    list-style-type: none; /* Remove bullets */
    padding: 0; /* Remove padding */
    margin: 0; /* Remove margins */
}

.round-button {
            display: inline-block;
            padding: 15px 30px;
            font-size: 18px;
            border-radius: 50px; /* Makes it round */
            text-align: center;
            text-decoration: none;
            background-color: #007bff; /* Blue color for Play Store */
            color: #fff; /* White text color */
            margin: 10px;
        }

        /* Style for the App Store button */
        .app-store-button {
            background-color: #4cd964; /* Green color for App Store */
        }

.center-container {
            display: flex;
            justify-content: center;
            align-items: center;

        }