/* Body Styles */
body {
    background-color: #220d41;
    font-family: 'Roboto', sans-serif;
    color: #ffffff;
    margin: 0;
    padding: 20px;
}

/* Container */
.container {
    text-align: center;
    margin: 0 auto;
    max-width: 800px;
}

/* Logo */
.logo {
    width: 200px;
    height: auto;
    margin-top: 20px;
}

/* Tagline */
.tagline {
    font-family: 'Bangers', cursive;
    font-size: 36px;
    color: #ffffff;
    margin: 20px 0;
}

/* Google Play Button */
.google-play {
    width: 200px;
    margin: 20px 0;
}

/* Description */
.description {
    text-align: left;
    margin: 40px auto;
    max-width: 700px;
}

.description p {
    margin-bottom: 15px;
}

.description h3 {
    font-family: 'Bangers', cursive;
    font-size: 24px;
    color: #fe3866;
    margin-top: 30px;
    margin-bottom: 10px;
}

.description ul {
    list-style-type: disc;
    padding-left: 40px;
}

.description li {
    margin-bottom: 10px;
}

/* Screenshots */
/* Screenshots */
.screenshots {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 20px 0 40px 0;
}

.screenshots img {
    width: calc(33.33% - 20px);
    max-width: 200px;
    margin: 10px;
    border: 2px solid #ffffff;
    border-radius: 8px;
}

/* Media Queries for Responsiveness */
@media screen and (max-width: 768px) {
    .screenshots img {
        width: calc(50% - 20px);
    }
}

@media screen and (max-width: 480px) {
    .links a {
        display: block;
        margin: 5px 0;
    }

    .google-play {
        width: 250px; /* Increase the width as desired */
    }
}
/* Links */
.links {
    margin-top: 40px;
    margin-bottom: 40px;
    clear: both;
}

.links a {
    color: #fe3866;
    text-decoration: underline;
    font-size: 14px; /* Reduced font size */
    margin: 0 10px;
}
