*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
.about {
    min-height: 100vh;
    background: #0f2027;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 10%;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.about-image img {
    width: 100%;
    max-width: 300px;
    border-radius: 20px;
    border: 4px solid #00d9ff;
}

.about-text {
    max-width: 600px;
}

.about-text h1 {
    font-size: 45px;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.experience-highlight {
    margin-top: 20px;
}

.experience-highlight li {
    margin-bottom: 8px;
    color: #00d9ff;
}

.skills ul {
    list-style: none;
    padding: 0;
}

.skills li {
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
}

.skills li::before {
    content: "✔";
    color: #00d9ff;
    position: absolute;
    left: 0;
}

.about-text button {
    margin-top: 20px;
    padding: 10px 25px;
    border: none;
    background: #00d9ff;
    color: black;
    font-weight: bold;
    cursor: pointer;
    border-radius: 25px;
    transition: 0.3s;
}

.about-text button:hover {
    background: white;
}


/* FOR RESPONSIVE TO ALL DEVICES */
@media (max-width: 768px) {
    header {
        padding: 15px 5%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;   /* Important */
        background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
    }
    
    nav .contents {
        display: flex;
        flex-wrap: wrap;   /* Important */
        gap: 10px;
    }

    nav .elements {
        width: 100%;
    }
}
