html{
  scroll-behavior: smooth;
}

body{

background:#000;

font-family:'Poppins',sans-serif;

margin:0;

padding:0;

color:white;

}

h1 {
  color: darkblue;
  text-align: center;
  font-family: Arial;
}

#date,
#clock {
    color: cyan;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
}

img {
  transition:transforms 0.3s ease;
}

img:hover {
  transform:scale(1.1)
}

img{
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    margin: 20px auto;
}

nav{
    text-align: center;
    padding: 15px;
    background:#2563eb;
    border-radius: 15px;
    margin: 20px;
}
nav a{
    text-decoration: none;
    margin: 15px;
    color: white;
    font-weight: bold;
}

.light-mode{
    background-color: white;
    color: black;
}

#about{
    display: none;
}


h2 {
     color: wheat;
     text-align: center;
}
p {
     color: #333333;
     font-size: 20px;
     line-height: 1.6;
}

section{
  padding: 30px;
}

div {
  border-radius: 15px;
  padding: 20px;
  margin: 20px;
  background-color: lightblue;
  transition: 0.3s;
  box-shadow: 0px 4px 10px lightgray;
}

 div:hover{
     transform: scale(1.02);
 }

ul{
  background-color: lightblue; 
  padding: 20px;
}

li{
  color: darkblue;  
  margin-bottom: 10px;
}

h3 {
     color:hotpink ;
     font-size: 30px;
     text-align: center;
     font-family: Tahoma;
}

#projects{
  display: none;
}

h4 {
  color: yellow;
  text-align: center;
  font-size: 25px;
}

button{

background:#2563eb;

color:white;

padding:15px 30px;

border:none;

border-radius:10px;

cursor:pointer;

font-size:18px;

transition:.3s;

}

button:hover{

background:#1d4ed8;

transform:scale(1.05);

}

button-link {
  display: inline-block;
  background-color: pink;
  color: red;
  padding: 15px;
  border: none;
  font-size: 20px;
  text-decoration: none;
  border-radius: 8px;
  transition: 0.3s;
}

.button-link:hover {
  background-color: gold;
}

a {
  color: white;
  font-size: 25px;
  text-decoration: none;
}a:hover {
  color: purple;
}

#contact {
    display: none;
}

.contact{
    background-color: lightyellow;
    border: 2px solid orange;
    margin: 20px;
    padding: 20px;
}

.contact a {
    display: inline-block;
    margin-top: 10px;
    padding: 12px 20px;
    background-color: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 10px;
}

.contact a:hover {
    background-color: #1da851;
}


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

.flex-container div{
     flex: 1;
}

@media (max-width: 768px) {

   .flex-container {
        flex-direction: column;
   }

}

.project-card{
  max-width: 600px;
  margin: 20px auto;
}


#projects {
  text-align: center;
}

#skills,
#future-plans{ 
   text-align: center;
}

.project-card{

background:#1e293b;

padding:25px;

margin:20px auto;

max-width:600px;

border-radius:15px;

box-shadow:0 8px 20px rgba(0,0,0,0.15);

transition:.3s;

}

.project-card:hover{

transform:translateY(-8px);

}

.project-card h3{

margin-bottom:10px;

color:#2563eb;

}

.project-card p{

margin-bottom:15px;

color: #cbd5e1;

line-height:1.6;

}

.project-card a{

display:inline-block;

text-decoration:none;

background:#2563eb;

color:white;

padding:10px 18px;

border-radius:10px;

font-weight:600;

transition:.3s;

}

.project-card a:hover{

background:#1d4ed8;

}

footer{
    text-align: center;
    padding: 20px;
    margin-top: 20px;
    background-color: lightblue;
    border-radius: 15px;
}

footer p{
    color: black;
    margin: 0;
}

