body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 90%;
  margin: auto;
}


#title {
  color: #000;
  font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
  text-shadow: 2px 2.5px 1px #333333;
  text-align: center;
}

nav ul {
  display: flex;
  justify-content: center;
  padding: 0;
}

nav li {
  list-style: none;
  margin: 1em;
}


nav a {
  text-decoration: none;
  color: #0066cc;
  font-weight: bold;
  transition: color 0.3s, transform 0.3s;
}
nav a:visited { color: #551a8b; }
nav a:hover { color: #ff6600; transform: scale(1.1); }
nav a:active { color: #009933; }
nav a:focus { outline: 2px solid #ff6600; }


#main {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  gap: 1.5em;
  margin: 1.5em 0;
  width: 100%;
}


.column {
  flex: 1;
  padding: 15px;
  border: 1px solid #ccc;
  text-align: center;
  background-color: #f9f9f9;
  border-radius: 10px;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.column:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}
/* pain in the ass but looks good*/
.column img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

h2 {
  text-align: center;
  font-family: 'Roboto', sans-serif;
  text-decoration: underline;
}


.column1 { order: 2; }
.column2 { order: 3; }
.column3 { order: 1; }


footer {
  display: flex;
  justify-content: center;
  width: 100%;
  background-color: #333;
  color: white;
  padding: 20px 0;
}

.footer-content {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 90%;
}

.footer-info p {
  margin: 5px 0;
}

.socials img {
  width: 30px;
  height: 30px;
  margin: 0 8px;
}


@media (max-width: 1000px) {
  body { width: 100%; }
}

@media (max-width: 700px) {
  #main {
    flex-direction: column;
  }
  .column {
    border: none;
    padding: 0;
  }
}
