@font-face {
  font-family: 'Gilroy';
  src: url('/fonts/Gilroy-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Gilroy';
  src: url('/fonts/Gilroy-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Gilroy';
  src: url('/fonts/Gilroy-Semibold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Gilroy';
  src: url('/fonts/Gilroy-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}

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

body {
  font-family: 'Gilroy', sans-serif;
  background-color: #f5f7fa;
  color: #3a3a3c;
  line-height: 1.6;
}

.container {
  display: flex;
  height: 100vh;
  width: 100%;
}

.content {
  width: 50%;
  padding: 2rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.image-container {
  width: 50%;
  overflow: hidden;
  background-color: #ddd;
  display: block;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

header {
  margin-bottom: 2rem;
  align-self: flex-start;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo img {
  max-width: 100%;
  height: auto;
}

main {
  max-width: 550px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: #3a3a3c;
}

.description {
  font-size: 1.1rem;
  color: #3a3a3c;
  margin-bottom: 2rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #3b82f6;
  color: white;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  transition: background-color 0.2s;
}

.btn-primary:hover {
  background-color: #2563eb;
}

footer {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #3a3a3c;
  align-self: flex-start;
}

@media (max-width: 768px) {
  .image-container {
    display: none;
  }

  .content {
    flex: 1;
    width: 100%;
  }
}

@media (min-width: 1024px) {
  h1 {
    font-size: 3rem;
  }

  .description {
    font-size: 1.2rem;
  }
}
