/*
Theme Name: Baby BLW Coming Soon
Theme URI: http://yourwebsite.com/
Author: Your Name
Author URI: http://yourwebsite.com/
Description: A Coming Soon theme for the Baby BLW Nutrition App.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: babyblw-coming-soon

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/

/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600&display=swap');


body, html {
    height: 100%;
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    color: #333;
    background-color: #FDEBD3; /* A warm background color */
}

hr {
  display: inline;
}

.hr {
  display: inline;
}

.container {
    height: 100%;
    display: flex;
    justify-content: start;
    align-items: center;
    text-align: center;
    flex-direction: column;
    padding-top: 80px;
}

.announcement {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.1);
}

h1 {
    font-weight: 600;
    color: #8C6E63; /* A warm color tone for the heading */
    margin-bottom: 1rem;
}

p {
    font-weight: 300;
    margin-bottom: 2rem;
    color: #5a5a5a; /* A soft color for text */
}

.social-media a {
    display: inline-block;
    margin-top: 1rem;
    color: #8C6E63;
    font-size: 2rem;
    transition: color 0.3s ease;
}

.social-media a:hover,
.social-media a:focus {
    color: #8C6E63;
    opacity: 0.7;
    text-decoration: none;
}

/* Responsive considerations */
@media (max-width: 768px) {
    .announcement {
        margin: 10px;
        padding: 20px;
    }
}

