* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Work Sans", sans-serif;
  background-color: #1a1a1a;
  color: #fff;
  line-height: 1.6;
}

.landing-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
}

header {
  margin-bottom: 10px;
}

header h1 {
font-size: 2em;
    text-transform: uppercase;
    margin: 30px auto;
}

header p {
  font-size: 20px;
  color: #ccc;
  margin-bottom: 20px;
}

main p {
  font-size: 22px;
  color: #ddd;
  margin: 20px 0;
}

.go-to-homepage-btn {
    text-decoration: none;
    padding: 15px 30px;
    background-color: #0894D6;
    color: white;
    font-size: 18px;
    font-weight: 500;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    display: flex;
    width: 250px;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    column-gap: 10px;
}

.go-to-homepage-btn:hover {
  background-color: #008ecd; 
}

main p {
    font-size: inherit;
}

main {
    max-width: 1000px;
    text-align: left;
}
img {
    max-width: 100%;
    height: auto;
}
footer {
  margin-top: 40px;
  font-size: 14px;
  color: #ccc;
}
