* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Red Hat Display", sans-serif;
    font-weight: 400;
    font-style: normal;
}

body {
    background: #010c0a;
    color: #f9fff8;
}

.main {
    padding-top: 5rem;
    display: flex;
    align-items: center;
    flex-direction: column;
}

section {
    width: 40rem;
}

.basic-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.experience, .education, .tools {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
}

.profile-picture {
    height: 7.5rem;
    border-radius: 0.5rem;
    border: solid 1px #366847;
}

.tools-list {
    display: flex;
    gap: 1em;
    flex-wrap: wrap;
}

.tools-list > li {
    list-style-type: none;
    border: 1px solid #366847;
    padding: 0.5rem;
    border-radius: 0.1rem;
    background: #07231a;
}
