*{
    margin:0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Times New Roman', Times, serif;
}
body {
    background: #f4f4f4;
    color: #333;
    
}
/* navbar */
header {
    background: #111;
    padding: 15px 40px;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    color: #fff;
    font-weight: bold;
    font-size: 35px;

}
.navlinks{
    list-style: none;
    display: flex;
    
}
.navlinks li {
    margin-left: 100px;
}
.navlinks a {
    text-decoration: none;
    color: #fff;
    font-size: 22px;
    font-weight: bold;
}
.navlinks a:hover {
    color: #00c6ff;
}
.hero {
    height: 90vh;
    background: linear-gradient(to right, #00c6ff, #0072ff);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 80px;
    color: white;
    justify-content: center;
    
}
.hero-content {
    max-width: 50%;
}

/* Image */
.hero-image img {
    width: 350px;
    max-width: 100%;
}
.amit {
    opacity: 0;
    transform: translate(60px);
    animation: fadeslide 1s ease-in forwards;
    animation-delay: 1.2s;
}
@keyframes fadeslide {
    to {
        opacity: 1;
        transform: translate(0);
    }
}
.wave {
    display: inline-block;
    animation: wave 1.5s infinite;
    transform-origin: 70% 70%;
}
@keyframes wave {
    0% { transform:rotate(0deg);}
    10% {transform:rotate(14deg);}
    20% {transform:rotate(-8deg);}
    30% {transform:rotate(14deg);}
    40% {transform:rotate(-4deg);}
    50% {tranform:roatate(10deg);}
    60% {transform:rotate(0deg);}
    100% {tranform:rotate(0deg);}

}
.hero h2 {
    font-size: 50px;
    font-weight: bold;
}
.hero p {
    margin: 10px 0;
    font-size: 25px;
}
.btn {
    background: white;
    padding: 12px 25px;
    color: #0072ff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    opacity: 0;
    transform: translateY(30px);
    animation: slideup 1s ease forwards;
    animation-delay: 1.2s;
}
@keyframes slideup {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.section {
    padding: 60px 40px;
    text-align: center;
}
.section h3 {
    font-size: 40px;
    margin-bottom: 20px;
}
#about p{
    font-size: 25px;
    font-weight: 550;
}
.skills {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.skill {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow:  0 0 10px rgba(0,0,0,0.1);
    font-size: 25px;
    font-weight: bold;
    text-align: center;
}
.projects {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
.project {
    background: white;
    padding:20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    
}
.project {
    opacity: 0;
    transform: translateY(30px);
    animation: slideup 1s ease forwards;
    animation-delay: 3s;
}
@keyframes slideup {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.project h4 {
    font-size: 25px;
    font-family: 'Times New Roman', Times, serif;
    text-transform:capitalize;
    font-weight: 900;
}
.project a {
    text-decoration: none;
    font-size: 18px;
}
.project p {
    font-size: 20px;
    font-weight: 550;
}
#contact h3 {
    font-size: 45px;
}
#contact a {
    font-size: 22px;
    font-weight: 550;
    color: #111;
    text-decoration: none;
    
}
#contact p {
    margin-top: 10px;
}
footer {
    background: #111;
    color: white;
    text-align: center;
    padding: 20px;
}
footer p {
    margin-top: 5px;
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
}
