body {
    font-family: 'Roboto', Arial, sans-serif;
    background-image: url('https://doninmass.files.wordpress.com/2013/05/space-sunrise-background-widescreen-earth-wallpapers.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}


.container {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.171); /* Adjust alpha (last value) for transparency */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
}

h1 {
    color: #b3b3b3;
    font-size: 32px;
    margin-bottom: 20px;
}

.quote {
    margin-top: 30px;
}

#quoteText {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 10px;
}

#author {
    font-size: 18px;
    color: #777;
}

#newQuoteBtn {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #000000;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#newQuoteBtn:hover {
    background-color: #5a6572;
    transform: scale(1.05);
    transition: background-color 0.3s ease, transform 0.3s ease;
}
/* Style for the "Share on Twitter" button */
#shareTwitterBtn {
    background-color: #1da1f2; /* Twitter blue color */
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none; /* Remove underlines from anchor tag */
    display: inline-block;
    margin-right: 10px; /* Add some spacing between buttons */
}
#shareWhatsAppBtn {
    background-color: #2cf243; /* Twitter blue color */
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none; /* Remove underlines from anchor tag */
    display: inline-block;
    margin-right: 10px; /* Add some spacing between buttons */
}

/* Style for the "Share on Instagram" button */
#copyQuoteBtn {
    background-color: #e4405f; /* Instagram pink color */
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none; /* Remove underlines from anchor tag */
    display: inline-block;
}
