@import url(https://fonts.googleapis.com/css2?family=Margarine&display=swap);

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

.blue-text {
    color: rgba(41, 145, 230);
}

body {
    width: 100%;
    height: 100vh;
    background-color: #fef0e4;
    font-family: 'Margarine';
    display: flex;
    justify-content: center;
    align-items: center;
}

.card {
    display: flex;
    flex-direction: row;
    width: 80%;
    margin: auto;
    gap: 1rem;
}
.info,
.experience {
    box-shadow:0 0 15px rgba(0,0,0, 0.35);
}
.info {
    width: 40%;
    border: 1px solid rgba(128, 128, 128, 0.366)

}

.info h2 {
    padding: 1rem;
    margin: 0 1rem;
}

.info p {
    padding-left: 1rem;
    padding-bottom: 1rem;
}

.info p i {
    padding-right: 2rem;
}

.contacts {
    border-bottom: 1px solid rgba(128, 128, 128, 0.366);
    margin-bottom: 1rem;
}

.progress {
    margin-left: 1rem;
    margin-right: 1rem;
    padding-bottom: 1rem;
}

.progress-bar1,
.progress-bar2,
.progress-bar3,
.progress-bar4 {
    background-color: rgba(41, 145, 230);
    height: 1.5rem;
    display: flex;
    justify-content: center;
    border-radius: 16px;
    border: none;
}

.progress-bar1 {
    width: 90%;
}

.progress-bar2 {
    width: 80%;
}

.progress-bar3 {
    width: 75%;
}

.progress-bar4 {
    width: 50%;
}

.percentage {
    color: white;
}

.experience {
    width: 60%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
    padding: 3rem 2rem 2rem 2rem;
    border: 1px solid rgba(128, 128, 128, 0.366)
}

.experience h2 {
    align-self: stretch;
    text-align: center;
    padding-bottom: 2rem;
}

.experience p,
.experience h3 {
    margin-bottom: 1rem;
}

.exp1,
.exp2 {
    border-bottom: 1px solid rgba(128, 128, 128, 0.366);
}