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

body {
    background-color: rgb(220, 245, 236);
}

a {
    text-decoration: none;
    color: #ffffff;
}

ul {
    list-style: none;

}

.container {
    max-width: 1024px;
    margin: 0 auto;
}

.header {
    background-color: rgb(50, 80, 63);
    padding: 20px 10px;
    color: #ffffff;
}

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

.description {
    margin: 20px 0;
}

.projects {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.project {
    width: 300px;
    background-color: rgb(211, 194, 194);
    position: relative;
}

.project img {
    width: 100%;
    height: 100%;
}

.project__content {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(50, 80, 63);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: opacity 0.3s ease-in;
}

.project:hover .project__content {
    cursor: pointer;
    opacity: 1;
}

.project__link {
    margin: 10px;
    padding: 10px;
    background-color: rgb(211, 194, 194);
}

