@import url('common.css');

/* Home page specific styles */
main {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.center {
  max-width: 800px;
}

.logo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: block;
  margin: 0 auto 20px;
}

h1 {
  color: #00ff00;
  font-size: 2.5em;
  margin-bottom: 0px;
}

.description {
  margin-top: 10px;
  font-size: 1.2em;
  margin-bottom: 50px;
}

.previews {
  display: flex;
  justify-content: space-around;
  margin-top: 20px;
}

.preview {
  width: 48%;
  border-radius: 10px;
  transition: transform 0.3s;
}

.preview:hover {
  transform: scale(1.05);
}

@media only screen and (max-width: 600px) {
  .previews {
    flex-direction: column;
  }

  .preview {
    width: 80%;
    margin-bottom: 20px;
  }
}
