* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

hr {
    margin: 8px 0;
}

.resume-container {
    /* max-width: 1080px; */
    max-width: 1000px;
    margin: 0 auto;
    padding: 56px;
    background-color: white;
    color: black;
    font-family: Poppins, sans-serif;
    box-sizing: border-box;
}

.resume-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    margin-top: 0;
    text-align: center;
}

.contact-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
}

.section-info {
    margin-top: 32px;
    margin-bottom: 32px;
}

.section-info .info {
    text-align: justify;
}

.section-info p.skill {
    margin: 8px;
}
.education .place {
    display: flex;
    justify-content: space-between;
    /* font-weight: bold; */
}
.education .degree {
    display: flex;
    justify-content: space-between;
}

.degree .name {
    font-weight: bold;
}

.educations {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    gap: 16px;
}

.education {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* Experience */
.experiences {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.experience .company-info {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
}

.company-info .tasks li {
    text-align: justify;
}

.duration {
    font-weight: bold;
    color: grey;
}

/* responsive */
@media (max-width: 768px) {
    .resume-container {
        padding: 24px;
    }
    .contact-items {
        flex-direction: column;
        align-items: right;
    }
    .education {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
    .education .place,
    .education .degree {
        display: flex;
        flex-direction: column;
    }
    .experience .company-info {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }
    .section-info {
        margin-bottom: 32px;
    }
}

body{
    background-color: gray;
}

/* Fractal Plaid Background */
/* body {
    top: 0;
    left: 0;
    background:
        linear-gradient(45deg, #333 25%, transparent 25%) -50px 0/100px 100px,
        linear-gradient(135deg, #333 25%, transparent 25%) -50px 0/100px 100px,
        linear-gradient(45deg, transparent 75%, #111 75%) -50px 0/100px 100px,
        linear-gradient(135deg, transparent 75%, #111 75%) -50px 0/100px 100px;
    background-color: #222;
    animation: animatePlaid 5s linear infinite;
    z-index: -1;
}

@keyframes animatePlaid {
    0% {
        background-position:
            0 0,
            0 0,
            0 0,
            0 0;
    }
    100% {
        background-position:
            100px 100px,
            -100px 100px,
            100px -100px,
            -100px -100px;
    }
} */
