/* Reset some default styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Body styles */
body {
  font-family: Lato, sans-serif;
  line-height: 1.6;
  color: #0c1619;
}

/* Headings */
h1, h2, h3 {
  margin-bottom: 0.5em;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

/* Links */
a {
  color: #0077cc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Layout */
header, footer {
  background-color: #f4f4f4;
  padding: 1rem;
  text-align: center;
}

main {
  padding: 1rem;
}

/* Lists */
ul, ol {
  margin-left: 2rem;
  margin-bottom: 1rem;
}

/* Forms */
input, textarea, button {
  font-family: inherit;
  font-size: 1rem;
  padding: 0.5rem;
  margin-bottom: 0.5rem;
}

button {
  background-color: #0077cc;
  color: #fff;
  border: none;
  cursor: pointer;
}

button:hover {
  background-color: #005fa3;
}

.container {
  margin:50px;
  display: flex;
  align-items: center;
}

.container img {
  margin-right: 10px; /* Adjust spacing between image and text */
}