@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #041827;
    color: #ededed;
}

/* ================= HEADER ================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 40px 50px;
    z-index: 100;
}

.logo {
    font-size: 25px;
    color: #00abf0;
    text-decoration: none;
    font-weight: 600;
}

/* ================= EDUCATION ================= */
.education {
    padding-top: 120px;
    padding-bottom: 4rem;

    max-width: 1100px;
    margin: 0 auto;

    padding-left: 1rem;
    padding-right: 1rem;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.education .heading {
    font-size: 40px;
    text-align: center;
    margin-bottom: 3rem;
}

span {
    color: #00abf0;
}

.education-row {
    width: 100%;
}

.education-column .title {
    font-size: 2.5rem;
    color: aquamarine;
    margin-bottom: 2rem;
}

/* ================= TIMELINE ================= */
.education-box {
    border-left: 3px solid red;
    padding-left: 2rem;
}

.education-content {
    margin-bottom: 2rem;
}

.education-content .content {
    border: 2px solid red;
    border-radius: 8px;
    padding: 1.5rem;
}

.education-content .year {
    font-size: 14px;
    margin-bottom: .5rem;
}

.education-content h3 {
    font-size: 18px;
    color: #00abf0;
    margin-bottom: .5rem;
}

.education-content p {
    font-size: 14px;
    line-height: 1.7;
}

/* ================= BUTTON ================= */
.btn-box {
    margin-top: 3rem;
}

.btn-box a {
    width: 150px;
    height: 45px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: #00abf0;
    color: #041827;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}

/* ================= MOBILE ================= */
@media (max-width: 750px) {

    .header {
        display: none;
    }

    .education {
        padding-top: 2rem;
    }

    .education-box {
        border-left: none;
        padding-left: 0;
    }

    .education-content .content {
        border: none;
        padding: 0;
    }

    .education-content h3 {
        font-size: 14px;
    }

    .education-content p {
        font-size: 12px;
        text-align: justify;
    }

    .education-content .year {
        font-size: 12px;
    }

    .btn-box a {
        width: 120px;
        height: 40px;
        font-size: 14px;
    }
}
