/* General reset */
body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),url('../Images/Backgrounds/Background.png') no-repeat center center fixed;
    background-size: cover;
    font-size: 18px;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.banner{
    margin: 20px auto;
    max-width: 800px;
    font-size: 2rem;
    background-color: #0072bb;
    border-radius: 15px;
    text-align: center;
}

.static-paragraph {
    margin: 20px auto;
    padding: 15px;
    max-width: 800px;
    background-color: #0072bb; /* Default dark background */
    color: white;
    border-radius: 15px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    font-size: 1rem;
    line-height: 1.5;
    transition: background-color 0.3s ease;
}

.focus-paragraph {
    background-color: #05639eb9;
    padding: 15px;    
    max-width: 800px;
    border-radius: 10px;
    margin: 20px auto;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

/* Highlighted paragraph style */
.focus-paragraph.focused {
    background-color: #0072bb;
    transform: scale(1.05);
    z-index: 1;
}

/* Responsive font size and padding */
@media (max-width: 768px) {
    .focus-paragraph {
        font-size: 0.9rem;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .focus-paragraph {
        font-size: 0.8rem;
        padding: 8px;
    }
}

/*Platform buttons*/
.google-play-button{
    height: 50px;
    width: 160px;
}

.button-link{
    height: 40px;
    width: 160px;
}

a {
    color: white;
  }