* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}
html {
  scroll-behavior: smooth;
}

body {
  background: linear-gradient(to bottom, #ffffff, #f0f0f0);
  color: #333;
  text-align: center;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav ul li a {
  text-decoration: none;
  color: #4caf50;
  font-size: 16px;
}
nav h2 {
  color: #4caf50;
}
.profile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}

.image-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
  border-radius: 15px;
}

.image-container img {
  width: 220px;
  height: 220px;
  border-radius: 40%;
  border: 5px solid #eee;
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.text-container {
  flex: 2;
}

.text-container p {
  font-size: 18px;
  color: #4caf50;
  margin-bottom: 10px;
}

.text-container h1 {
  font-size: 48px;
  font-weight: bold;
  color: rgb(88, 229, 12);
  margin-bottom: 15px;
}

.text-container .role {
  font-size: 22px;
  color: #4caf50;
}

.buttons {
  display: flex;
  gap: 20px;
  margin: 30px 0;
}

.socials {
  display: flex;
  gap: 15px;
}

.btn {
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-outline {
  color: #4caf50;
  border: 2px solid #4caf50;
  background: transparent;
}

.btn-outline:hover {
  background: #4caf50;
  color: #fff;
}

.btn-solid {
  color: #4caf50;
  border: 2px solid #4caf50;
}

.btn-solid:hover {
  background: #4caf50;
  color: white;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.socials a img {
  width: 30px;
  height: 30px;
}
.car {
  display: flex;
  justify-content: center;
  padding: 2rem 1rem;
}
.par {
  background: #f4f4f4;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 1.5rem;
  width: 600px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  justify-content: center;
}
.par p,
h2 {
  color: #4caf50;
}

.contact-info {
  background-color: #e8edf2b1;
  color: #070808;
  padding: 50px 20px;
  text-align: center;
}

.contact-info h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.contact-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.contact-item {
  background-color: #26d523aa;
  padding: 20px;
  border-radius: 10px;
  width: 280px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 12px rgba(71, 233, 7, 0.501);
}

.contact-item i {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #1abc9c;
}

.contact-item span {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}

.contact-item p {
  margin: 0;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .contact-item {
    width: 90%;
  }
}

nav {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  color: #040303;
  padding: 1.7rem 0;
  margin-bottom: 6%;
  min-height: fit-content;
  display: flex;
}

nav a {
  color: #030202;
  text-decoration: none;
  margin: 0 1rem;
  font-size: large;
}

nav a:hover {
  text-decoration: underline;
  font-weight: 500;
  font-size: larger;
}

.hero h1 {
  font-size: 2.5rem;
  margin: 0;
}

.container {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 2rem 1rem;
}
.contact-item,
p,
a {
  text-decoration: none;
  color: #040303;
}
.card {
  background: #f4f4f4;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 1.5rem;
  width: 300px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.playground h2 {
  color: rgb(88, 229, 12);
}
.card h2 {
  margin-top: 0;
  color: #4caf50;
}

.card p {
  margin: 1rem 0 0;
}

.playground {
  text-align: center;
  margin: 2rem 0;
}

.cube {
  width: 150px;
  height: 150px;
  margin: 2rem auto;
  transform-style: preserve-3d;
  transform: rotateX(30deg) rotateY(30deg);
  animation: rotateCube 5s infinite linear;
}

.face {
  position: absolute;
  width: 150px;
  height: 150px;
  border: 0.5px solid #f1f4f0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  color: #fff;
}
.face img {
  width: 150px;
  height: 150px;
}
.front {
  transform: translateZ(75px);
}
.back {
  transform: rotateY(180deg) translateZ(75px);
}
.left {
  transform: rotateY(-90deg) translateZ(75px);
}
.right {
  transform: rotateY(90deg) translateZ(75px);
}
.top {
  transform: rotateX(90deg) translateZ(75px);
}
.bottom {
  transform: rotateX(-90deg) translateZ(75px);
}

@keyframes rotateCube {
  from {
    transform: rotateX(0deg) rotateY(0deg);
  }
  to {
    transform: rotateX(360deg) rotateY(360deg);
  }
}

footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 1rem 0;
  margin-top: auto;
}
