* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #080808;
    color: #fff;
    height: fit-content;
}

#header {
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background:linear-gradient(0deg, rgb(8, 8, 8),rgba(0, 0, 0, 0.2)), url(images/hero-image.jpg);
 }

 #header p {
    padding-bottom: 0;
 }

.container {
    padding: 10px 10%;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo {
    width: 140px;
}

.name {
    font-family: "Poppins";
    font-size: 35px;
    font-weight: 800;
}

nav ul li {
    display: inline-block;
    list-style: none;
    margin: 10px 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    position: relative;
}

nav ul li a::after {
    content: '';
    width: 0;
    height: 3px;
    background: #ff004f;
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: 0.5s;
}

nav ul li a:hover::after {
    width: 100%;
}

.header-text {
    margin-top: 20%;
    font-size: 40px;
}

.header-text h1 {
    font-weight: 600;
    font-size: 90px;
}

.header-text h1 span {
    color: #ff004f;
}

/* --- Sections --- */
#about, #experience, #education, #skills, #quote, #contact {
    padding: 80px 0;
    color: #ababab;
}

.container p {
    padding-bottom: 20px;
}

.container ul li {
    margin-bottom: 10px;
}

.row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.sub-title {
    font-size: 60px;
    font-weight: 600;
    color: #fff;
}

ul li span {
    color: #b54769;
    font-weight: 600;
}

/* --- About --- */
.about-col-1 {
    flex-basis: 35%;
}

.about-col-1 img {
    width: 100%;
    border-radius: 15px;
}

.about-col-2 {
    flex-basis: 60%;
}

/* --- Experience --- */
.experience-col-1 {
    flex-basis: 60%;
}

.experience-col-2 {
    flex-basis: 35%;
}

.experience-col-2 img {
    width: 100%;
    border-radius: 15px;
}

/* --- Education --- */
.education-col-1 {
    flex-basis: 35%;
}

.education-col-1 img {
    width: 100%;
    border-radius: 15px;
}

.education-col-2 {
    flex-basis: 60%;
}

/* --- Skills --- */
.skills-col-1 {
    flex-basis: 50%;
    text-align: center;
}

.skills-col-1 img {
    width: 100%;
    border-radius: 15px;
}

.skills-col-2 {
    flex-basis: 50%;
    text-align: center;

}

/* --- Quote --- */
#quote .container {
    background-color: #ff004f;
    padding-top: 20px;
}

#quote p {
    text-align: center;
    color: #fff;
    font-size: 50px;
    font-style: italic;
}

#quote #author {
    font-size: 16px;
}

/* --- Contact --- */
#contact h2 {
    text-align: center;
}

#contact p {
    padding-top: 20px;
    text-align: center;
}

/* #contact a {
    color: #ababab;
    text-decoration: none;
} */

.btn {
    display: block;
    margin: auto;
    width: fit-content;
    border: 1px solid #ffffff;
    padding: 14px 50px;
    border-radius: 6px;
    text-decoration: none;
    color: #fff;
    transition: background 0.5s;
}

.btn:hover {
    background: #ff004f;
}

/* --- Footer --- */
#footer {
    width: 100%;
    text-align: center;
    padding: 25px 0;
    background-color: #262626;
}

/* --- Menu --- */
.menu, .close {
    display: none;
}

/* --- Small Screen--- */
@media only screen and (max-width: 600px) {

    #header {
        background:linear-gradient(0deg, rgb(8, 8, 8),rgba(0, 0, 0, 0.2)), url(images/hero-image-small.jpg);
    }

    .header-text h1 {
        padding-top: 30%;
        font-weight: 600;
        font-size: 55px;
    }

    .menu {
        display: block;
        font-size: 25px;
        font-weight: bold;
        cursor: pointer;
    }

    nav ul {
        background: #ff004f;
        position: fixed;
        top: 0;
        right: -150px;
        width: 150px;
        height: 100vh;
        padding-top: 50px;
        z-index: 2;
        transition: right 0.5s;
    }

    nav ul li {
        display: block;
        margin: 25px;
    }

    nav ul .close {
        display: block;
        font-size: 18px;
        font-weight: bold;
        position: absolute;
        top: 25px;
        left: 25px;
        cursor: pointer;
    }

    #about, #experience, #education, #skills, #quote, #contact {
        padding: 25px 0;
    }

    .row {
        font-size: 14px;
    }

    .sub-title {
        padding-top: 30px;
        font-size: 40px;
    }

    p {
        padding-bottom: 15px;
    }

    .about-col-1, .about-col-2 {
        flex-basis: 100%;
    }

    .experience-col-1, .experience-col-2 {
        flex-basis: 100%;
    }

    .education-col-1, .education-col-2 {
        flex-basis: 100%;
    }

    .skills-col-1, .skills-col-2 {
        flex-basis: 100%;
    }

    #quote p {
        font-size: 30px;
    }

    #experience .row {
        flex-direction: column-reverse;
    }

    #contact p {
        font-size: 14px;
        padding-top: 10px;
    }

    #footer {
        padding-bottom: 15px;
        font-size: 14px;
    }

}