body {
    margin: 0;
    font-family: Arial,  sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color:rgb(243, 232, 232);
}
@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width:600px) {
    .card{
        margin: 2rem auto;
        padding: 1.5rem;
    }

    .card p{
        font-size: 1rem;
    }
    .card img{
        width: 120px;
    }

}
.card{
    background-color: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow:0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
    width: 90%;
    max-width: 300px;
    animation: slideIn 2.6s ease-out;
}



.card img  {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 1;
}

.card h2{
    margin: 3;
    text-align: center;
}

.card p{
    font-size: 0.9rem;
    text-align: center;
}

.social img{
    width: 50px;
    height: 50px;
    margin-top: 2;
}

.social a{
    display: inline-block;
    margin-top: 2;
    transition: transform 0.2s ease,color 0.2s ease;
}

.social a:hover{
    transform: scale(1.2);
    color:aquamarine;
    rotate: 18deg;
    text-shadow: 10px;
}

button {
  background-color: #4a90e2; 
  color: white; 
  border: none; 
  padding: 0.6rem 0.2rem; 
  border-radius: 10px; 
  cursor: pointer; 
  font-size: 1rem;
  margin: 0.2rem;
  
}
button:hover{
    transform: scale(1.1);
}
#darkBtn {
  background-color: #2c3e50;
  color: #ecf0f1;
}


#lightBtn {
  background-color: #ffffff;
  color: #333333;
  border: 1px solid #ccc;
}


button:hover {
  opacity: 0.8;
}

.hidden {
  display: none;
}
