* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    color: #4d2323;
}

a {
    text-decoration: none;
    color: #307139;
    transition: color 0.5s;
}

a:hover {
    color: #363d37;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 10px 30px 10px 30px;
}

.header {
    background-color: #16947f;
    text-decoration: none;
}

.nav-list {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.nav-link {
    color: aliceblue;
    text-decoration: none;
}

.nav-list {
    list-style-type:  none;
  }

.nav-item {
    margin-left: 20px; 
}

main {
    margin: 20px;
    box-shadow: 10px 10px 40px -1px rgba(0, 0, 0, 0.23);
}

.main-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
  
.section {
    width: 48%;
    padding: 20px;
    /* border: 4px dashed #16947f; */
    margin: 5px;
}

.section-title {
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: #829985;
}

.main-title {
    font-size: 40px;
}

.title-box {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contacts-photo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contacts-photo-logo {
    max-width: 100%;
    border-radius: 50%;
}





.footer {
    background-color: #16947f;
}


.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
}

.my-github {
    display: flex;
    align-items: center;
}

.github-name {
    margin-left: 5px;
    color: aliceblue;
}

.github-year {
    color: aliceblue;
}

.rss {
    width: 121px;
    height: 45px;
    background-image: url("./assets/svg/rss.svg");
    background-size: contain;
    background-repeat: no-repeat;
}

@media (max-width: 768px) {
    .section {
        width: 100%;
    }
}
