/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: white;
  color: black;
}

font-face {
    font-family: 'DigimonBasic';
    font-style: normal;
    font-weight: 500;
    src: url('https://fonts.cdnfonts.com/css/digimonbasic') format('tff');
}

/* 2. The Main Wrapper (The 'New' Center) */
.main-wrapper {
  max-width: 800px;
  margin: 0 auto; /* Centers the container on the page */
  text-align: center; /* Centers the text inside */
  padding: 50px 20px;
  font-family: sans-serif; /* Fallback font */
}

/* 3. Using the Digimon Font on specific elements */
.site-title {
  font-family: 'DigimonBasic', sans-serif;
  font-size: 3rem;
  color: #2a52be;
  margin-bottom: 10px;
}

.welcome-text {
  font-family: 'DigimonBasic', sans-serif;
  font-size: 1.5rem;
  margin-top: 0;
}

/* 4. Styling the logo and text blocks */
.main-logo {
  max-width: 100%; /* Makes it responsive */
  height: auto;
  margin: 20px 0;
}

.status-update {
  font-family: 'DigimonBasic', sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
}

.contact-info {
  font-size: 0.9rem;
  color: #666;
  border-top: 1px solid #ddd;
  padding-top: 20px;
}

.social-link {
  color: #2a52be;
  text-decoration: none;
  font-weight: bold;
}

.social-link:hover {
  text-decoration: underline;
}
