/* Box model properties */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Background and color properties */
body {
  font-family: 'Montserrat';
  background-color: #2f343f;
  background-image: linear-gradient(to bottom, #2f343f, #434a54);
}

ul, ol {
  /* Custom list styles */
  list-style-type: none; /* Remove default list markers */
  font-family: 'Montserrat';
  padding: 0; /* Remove default padding */
  margin: 0; /* Remove default margin */
}

li {
  /* Custom list item styles */
  margin-bottom: 10px; /* Add spacing between list items */
}

a {
  color: #34A8FF; /* Primary link color */
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #2E7BBF; /* Hover link color */
}

a:active {
  color: #1A6DFF; /* Active link color */
}

a:visited {
  color: #4E8FFB; /* Visited link color */
}

/* Typography properties */
h1 {
  font-size: 30px;
  font-weight: 500;
  margin-top: 30px;
  text-align: center;
}

/* Typography properties */
h2 {
  font-size: 24px;
  font-weight: 500;
  margin-top: 30px;
  color: #666666;
}

p {
  font-size: 18px;
  margin-bottom: 20px;
  color: #777777;
}

/* Layout and positioning properties */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #2f343f;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  border-radius: 30px;
  animation: fadeIn 2s;
}

.logo {
  width: 220px;
  height: 120px;
  margin-right: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  border-radius: 30px;
  animation: fadeIn 2s;
}

.logo img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 30px;
}

.navbar {
  font-size: 46px;
  font-weight: bold;
  font-family: 'Montserrat';
  text-align: left;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  border-radius: 30px;
  animation: fadeIn 2s;
}

.container {
  max-width: 800px;
  margin: 80px auto;
  padding: 40px;
  background-color: #FFFFFF;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  border-radius: 30px;
  animation: fadeIn 2s;
  margin: 0 auto;
}

.content {
  line-height: 1.6;
  word-wrap: break-word;
  width: 80%;
  margin: 0 auto;
}

.content img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
  margin: 20px auto;
  border-radius: 30px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.footer {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  color: #888888;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

#signup-form {
  max-width: 600px;
  margin: 20px auto;
  padding: 20px;
  background-color: #434a54;
  border: 1px solid #000000;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  border-radius: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#signup-form label {
  margin-right: 10px;
  color: #000000;
}

#signup-form input[type="email"],
#signup-form input[type="text"] {
  width: 25%;
  height: 40px;
  padding: 10px;
  border: 1px solid #666;
  border-radius: 30px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  background-color: #fff;
  color: #333;
}

#signup-form button[type="submit"] {
  width: 20%;
  height: 40px;
  background-color: #434a54;
  color: #000000;
  padding: 10px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  font-size: 16px;
  font-weight: bold;
}

#signup-form button[type="submit"]:hover {
  background-color: #434a54;
}