* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #0f172a;
    color: #e5e7eb;
    line-height: 1.6;
    min-width: 375px;
}



.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    margin-top: 25px;
}

.hero img{
    width: 70%;
    max-width: 450px;
    border-radius: 50%;
}

.hero h1 {
    font-size: 30pt;
    color: #38bdf8;
}

.hero .btn {
    margin-top: 20px;
    padding: 12px 24px;
    background: #38bdf8;
    color: #0f172a;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s;
}

.hero .btn:hover {
    background: #0ea5e9;
}



section {
    padding: 80px 10%;
}

h3 {
    font-size: 26pt;
    margin-bottom: 20px;
    color: #38bdf8;
}



.about p {
    max-width: 1000px;
}



.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

.skill {
    background: #1e293b;
    padding: 15px;
    text-align: center;
    border-radius: 10px;
    transition: 0.3s;
}

.skill:hover {
    transform: translateY(-5px);
    background: #334155;
}



.experiences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
}

@media (max-width: 768px) {
    .experiences-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

.experience-card {
    background: #1e293b;
    padding: 20px;
    border-radius: 12px;
    transition: 0.3s;
}

.experience-card:hover {
    transform: translateY(-5px);
    background: #334155;
}

.experience-card h4 span{
    color: #38bdf8;
    font-size: 11pt;
    margin-left: 5px;
}

.experience-card h6{
    color: rgb(180, 180, 180);
}

.experience-card ul{
    margin-left: 20px;
}


.contact a {
    margin-bottom: 5px;
    height: 25px;
    display: flex;
    align-items: center;
}

.contact a img{
    width: 20px;
    margin-right: 5px;
}

.contact a:link {
    color: #e5e7eb;
    text-decoration: none;
}

.contact a:visited {
    color: #e5e7eb;
    text-decoration: none;
}

.contact a:hover {
    color: #e5e7eb;
    text-decoration: underline;
}

.contact a:active {
    color: #e5e7eb;
    text-decoration: underline;
}



footer {
    text-align: center;
    padding: 20px;
    background: #020617;
}
