html, body {
    height: 100%;
    display: flex;
    flex-direction: column;
}

body {
    flex: 1;
}

.bold {
    font-weight: 500;
}

.menu {
    padding: 5px 10px 0 10px;
    display: flex;
    justify-content: right;
    flex-direction: row;
}

.theme_icon {
    cursor: pointer;
}

.header {
    width: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 70px auto 0 auto;
}

.header h1 {
    font-family: Inter;
    font-size: 2.25rem;
    margin: 20px 0 20px 0;
    color: #2A2A2A;
}

.header .text {
    padding: 0 15px 0 15px;
    letter-spacing: 0.4px;
    font-family: Inter;
    font-weight: 320;
    color: #363636;
    font-size: 0.9rem;
}

.header .icon {
    width: 28px;
}

.content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: baseline;
    gap: 0px 60px;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    margin: 50px auto 0 auto;
}

.programming,
.networking {
    flex: 1 1 300px;
    padding: 50px 20px 40px 20px;     /* Allow to grow, shrink, base 300px */
    min-width: 200px;
    max-width: 600px;
    background-color: #f0f0f0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.programming {
    background: linear-gradient(to bottom, #ffffff 0%, #E8F5E7 50%, #ffffff 100%);
}
.networking {
    background: linear-gradient(to bottom, #ffffff 0%, #E7F1F5 50%, #ffffff 100%);
}

.icons {
    width: 100%;
    display: flex;
    gap: 20px;
    padding: 0 0 50px 0;
}

.programming .icons {
    justify-content: flex-end;
    margin-left: 50px;
}
.networking .icons {
    justify-content: flex-start;
    margin-right: 50px;
}

.icons .icon {
    width: 20px;
}

.content h1 {
    font-family: Roboto-Regular;
    font-size: 0.938rem;
    color: #313131;
    margin: 0 0 35px 0;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.item {
    display: flex;
    flex-direction: row;
    padding-left: 10px;
    gap: 10px;
}

.item .icon {
    width: 18px;
}

.item .info {
    font-family: Inter;
    font-weight: 300;
    font-size: 0.857rem;
    color: #383838;
}

.projects {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 60px auto 100px auto;
    padding: 40px 0 60px 0;
    width: 100%;
    min-width: 200px;
    max-width: 660px;
    border-left: 1px solid rgba(61, 122, 135, 20%);
    border-right: 1px solid rgba(61, 122, 135, 20%);
}

.content,
.projects {
    flex-shrink: 0;
}

.project_header {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.project_header h1 {
    margin: 0;
    font-family: Inter;
    font-weight: 600;
    font-size: 1rem;
    color: #313131;
}

.project_header .icon {
    width: 20px;
}

.projects .text_content {
    margin: 50px auto 0 auto;
    display: flex;
    flex-direction: column;
    padding: 0 25px 0 25px;
    gap: 50px;
}

.project {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    width: 100%;
    min-width: 200px;
    max-width: 500px;
}

.project h1 {
    font-family: Inter;
    font-weight: 485;
    font-size: 0.93rem;
    color: #313131;
    letter-spacing: 0.14px;
}

.project_list {
    display: flex;
    flex-direction: row;
    align-items: start;
    padding-left: 15px;
    gap: 12px;
}

.project_list .info {
    font-family: Inter;
    font-weight: 300;
    font-size: 0.93rem;
    color: #2b2b2b;
    line-height: 1.775rem;
}

.info a {
    color: #2b2b2b;
    text-decoration-color: #858585;
    text-underline-offset: 2px;
}

.project_list .icon {
    width: 18px;
    margin-top: 5px;
}

.footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: auto;
    color: #3b3b3b;
    text-align: center;
    padding: 20px 0 20px 0;
    font-family: Inter;
    font-weight: 450;
    font-size: 0.85rem;
}


.footer .content_f {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.content_f .info {
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 0px;
}

.contacts {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.contacts h1 {
    font-size: 1rem;
    padding: 0;
    margin: 0;
}

.contacts .icon {
    width: 20px;
}

.contacts p {
    font-size: 0.84rem;
}

.footer .info h1 {
    font-size: 1rem;
    padding: 0;
    margin: 0;
}

.footer .info p {
    font-size: 0.84rem;
}
