/* V=5 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html, body {
    height: 100%;
    font-family: Arial, sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(90deg, #654ea3, #e9afc8);
    color: white;
    text-align: center;
    padding: 20px;
    min-height: 100vh;
}

.coming-soon-container {
    max-width: 800px;
    width: 100%;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
}

h1 {
    font-family: 'Pacifico', cursive;
    font-size: 82px;
    margin-bottom: 20px;
}

p {
    font-family: 'Comfortaa', sans-serif;
    font-size: 1.2rem;
    line-height: 1.5;
}

p.highlighted-text {
    font-size: 2rem; /* Lielāks izmērs īpašajam tekstam */
    font-weight: bold;
    margin-bottom: 20px; /* Pievieno atstarpi starp lielo un pārējo tekstu */
}

footer {
    text-align: center;
    font-family: 'Comfortaa', sans-serif;
    font-size: 14px;
    color: white;
    padding: 10px 0;
    width: 100%;
    position: sticky;
    bottom: 0;
}
