

body {
  font-family: "Pixelify Sans", sans-serif;
  margin: 0;
  background: #ffffff;
  color: #000000;
}

header {
  background: #ffffff;
  padding: 0.5em 0;
}

/* Center the logo inside the container */
.container {
  display: flex;
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
}

.logo {
  max-width: 100%; /* Ensure the logo scales properly */
  height: auto; /* Maintain aspect ratio */
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

.logo {
  font-size: 2em;
  font-weight: bold;
  color: #fff;
  display: inline-block;
  margin: 0;
}

nav {
  float: right;
}

nav a {
  color: #fff;
  text-decoration: none;
  margin-left: 2em;
  font-weight: 500;
  font-size: 1.1em;
}


.hero {
  background: #901340;
  background: linear-gradient(90deg, rgba(144, 19, 64, 1) 0%, rgb(241, 152, 78) 50%, rgba(255, 203, 37, 1) 100%);
  background-size: 400% 400%;;
  animation: gradient 15s ease infinite; 
  color: #ffffff;
  padding: 1em 0 2em 0;
  text-align: center;
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	
  }
}

.hero h2 {
  font-size: 2.5em;
  margin-bottom: 0.5em;
}

.hero p {
  font-size: 1.2em;
  margin-bottom: 1.5em;
}

.box {
  padding: 8px;
  background: #333;
  border: 3px solid black;
  border-top: none;
  border-radius: 0 0 8px 8px;
  color: #fff;
  height: 120px;
  width: 784px;
}

.projects {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
  margin-top: 2em;
}

/* From Uiverse.io by Codewithvinay */ 
.card_title{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card_title p {
  font-size: 2.0em;
  color: #000;
  margin: 0;
}

.card {
  width: 500px;
  height: 254px;
  border-radius: 50px;
  background: #e0e0e0;
  box-shadow: 10px 10px 30px #bebebe,
                -10px -10px 3cqh #ffffff;
  position: relative;
  margin: 20px;
  overflow: hidden;
  transition: all 0.8s ease;
 }

 .card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
 }

 .card:hover {
  box-shadow: 10px 10px 30px #da7979,
              -10px -10px 30px #ffffff;
  transform: translateY(-10px);
 }

.box .message {
  position: relative;
  float: left;
  font-size: 24px;
  width: 50%;
}
.box .continue {
  position: absolute;
  margin-top: 30px;
  float: left;
  width: 25%;
  height: 100%;
}
.box .continue  button {
  position: relative;
  float: left;
  background: #666;
  border: 3px solid #888;
  border-radius: 4px;
  color: #fff;
  font-family: monospace;
  font-size: 20px;
  line-height: 14px;
  margin: 4px;
  padding: 16px;
  outline: none !important;
}
.box .continue button:hover {
  background: #777;
  border-color: #999;
}

.box .continue button:active {
  background: #555;
  border-color: #666;
}

.box .actions {
  position: relative;
  float: left;
  width: 50%;
  height: 100%;
}

.box .actions button {
  position: relative;
  float: left;
  background: #666;
  border: 3px solid #888;
  border-radius: 4px;
  color: #fff;
  font-family: monospace;
  font-size: 20px;
  line-height: 14px;
  margin: 4px;
  padding: 16px;
  width: calc(50% - 8px);
  height: calc(50% - 8px);
  outline: none !important;
}

.box .actions button:hover {
  background: #777;
  border-color: #999;
}

.box .actions button:active {
  background: #555;
  border-color: #666;
}

footer {
  padding: 2em 0;
  margin-top: 6em;
  font-size: 2em;
  text-align: center;

  background: #901340;
  background: linear-gradient(90deg, rgba(144, 19, 64, 1) 0%, rgb(241, 152, 78) 50%, rgba(255, 203, 37, 1) 100%);
  background-size: 400% 400%;;
  animation: gradient 15s ease infinite; 
  color: #ffffff;
}

