:root {
    --text-main-color: #121f3d;
    --text-second-color: #24385b;
    --background-main-color: white;
    --background-second-color: #FFEFD6;
}

html {
    font-size: 62.5%;
    font-family: 'Ubuntu', 'sans-serif';
}

body {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    background-color: var(--background-main-color);
    font-size: 1.6rem;
    color: var(--text-main-color);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;    
}

.navbar {
    width: 100%;
    height: 60px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.navbar img {
    width: 50px;
    margin-left: 12px;
}

.navbar .right-side {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .right-item {
    padding: 4px
}

.main-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.courses-into {
    text-align: center;
    width: 90%;
    max-width: 800px;
    color: var(--text-main-color);
}

.skills {
    width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 800px;
}

.skills-div {
    display: flex;
    flex-direction: row;
}

.skills-div h2 {
    padding-left: 16px;
}

.hard-skills {
    width: 50%;
    padding: 24px;
}

.soft-skills {
    width: 50%;
    padding: 24px;
}

.skills ul {
    list-style: none;
}

.skills a {
    text-decoration: none;
    color: var(--text-second-color);
}

.skills a:active {
    color: var(--text-second-color)
}

.courses-description {
    width: 100%;
}

.courses-description li {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.courses-description img {
    width: 100px;
}

footer {
    background-color: var(--background-main-color);
    box-sizing: border-box;
    width: 100%;
    height: 60px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 8px;
    position: fixed;
    bottom: 0;
}