 body {
  background-color: #222;
  color: #3527ce;
  font-family: Comic Sans MS, Comic Sans, cursive;
  margin: 0;
  height: 100vh;
  overflow: hidden;
}

nav {
  padding: 10px;
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.menu {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.menu li {
  margin: 0 10px;
}

.menu li a {
  color: #bbe0ed;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 9px 12px;
}

.menu li a:hover {
  border-color: #3527ce;
}

.main-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
}

h1 {
  font-size: 60px;
  position: relative;
  z-index: 1;
  margin-top: 0;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 5px;
}


p {
  font-family: 'Noto Sans', sans-serif;
}

.welcome-text {
  font-size: 20px;
  margin-top: 0px;
}

.description {
  font-size: 18px;
  margin-top: 10px;
   animation: mymove 5s;
}

@keyframes mymove {
  from {font-size: 12px;}
  to {font-size: 18px}
}

.view-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: transparent;
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  margin-top: 20px;
  border: 2px solid #777;
  transition: background-color 0.3s, color 0.3s;
}

.view-button:hover {
  background-color: #555555;
  color: #fff;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
  margin-top: 40px;
}

.project {
  background-color: #333;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  height: 400px;
  overflow: hidden;
  width: 300px;
}

.project img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 10%;
  margin-bottom: 10px;
}


.project h2 {
  font-size: 35px;
  margin: 10px 0;
  font-family: 'Montserrat', sans-serif;
}

.project p.description {
  font-size: 16px;
  margin: 0;
  overflow-y: auto;
  font-family: 'Roboto', sans-serif;
}

.project-links {
  margin-top: 20px;
}

.project-links a {
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 8px 12px;
  margin-right: 0px;
}

.project-links a:hover {
  border-color: #777;
}
