/* stylesheet.css */

/* Base layout */
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #f9f9f9;
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

/* Container styling */
.container {
  text-align: center;
  background: #fff;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  width: 90%;
}

/* Logo image */
.logo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 1rem;
}

/* Headings and text */
h1 {
  font-size: 1.8rem;
  margin: 0.5rem 0;
}

p {
  margin: 0.3rem 0;
}

/* Links */
a {
  display: inline-block;
  margin-top: 1rem;
  text-decoration: none;
  color: #333;
  font-weight: bold;
  transition: color 0.3s;
}

a:hover {
  color: #333;
}

a:visited {
  color: #333; 
}
