html {
    background: linear-gradient(315deg, #222222, #131313);
    font-family: 'Montserrat', sans-serif;
}
/*Light 300*/
/*Regular 400*/
/*Medium 500*/
/*Bold 700*/
html, body {
    padding: 0;
    margin: 0;
}
.my-projects {
    padding-top: 50px;
}
.my-projects .title {
    color: white;
    font-size: 48px;
    font-weight: 600;
    width: 100%;
    display: flex;
    justify-content: center;
}
.my-projects .projects-list {
    padding-top: 50px;
    display: flex;
    justify-content: center;
    gap: 150px;
}
.my-projects .project {
    height: 430px;
    width: 325px;
    border-radius: 15px;
    background-color: #252525;
    position: relative;
    box-shadow: 0 10px 20px rgba(0,0,0,0.30), 0 15px 12px rgba(0,0,0,0.22);
}
.my-projects .project-title {
    font-weight: 600;
    font-size: 48px;
    color: white;
    height: 100px;
    background-color: #202020;
    border-radius: 15px 15px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 0 0 15px rgba(80, 80, 80, 0.6);
}
.my-projects .project-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.my-projects .project-description {
    font-weight: 500;
    font-size: 20px;
    color: #EFEFEF;
    width: 262px;
    padding-top: 10px;
}
.my-projects .project-stack {
    font-size: 20px;
    color: #757575;
    font-weight: 500;
    position: absolute;
    bottom: 10px;
}

.portfolio .projects-list {
    padding-top: 50px;
    display: flex;
    justify-content: center;
    gap: 150px;
}

.portfolio {
    padding-top: 50px;
}
.portfolio .title {
    color: white;
    font-size: 48px;
    font-weight: 600;
    width: 100%;
    display: flex;
    justify-content: center;
}

.portfolio .project {
    height: 255px;
    width: 550px;
    border-radius: 15px;
    background-color: #252525;
    position: relative;
    box-shadow: 0 10px 20px rgba(0,0,0,0.30), 0 15px 12px rgba(0,0,0,0.22);
}
.portfolio .project-title {
    font-weight: 600;
    font-size: 32px;
    color: white;
    height: 100px;
    background-color: #202020;
    border-radius: 15px 15px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 0 0 15px rgba(80, 80, 80, 0.6);
}
.portfolio .project-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.portfolio .project-description {
    font-weight: 500;
    font-size: 20px;
    color: #EFEFEF;
    padding-top: 10px;
}
.portfolio .project-stack {
    width: 100%;
    display: flex;
    justify-content: center;
    font-weight: 500;
    font-size: 18px;
    color: #757575;
    position: absolute;
    bottom: 10px;
}

.project {
    transition: scale 0.15s;
}

.project.clickable {
    cursor: pointer;
}

.project.clickable .project-title {
    text-decoration: underline;
}

.project.clickable:hover {
    scale: 1.025;
}

.footer {
    width: 100%;
    padding-top: 40px;
    padding-bottom: 40px;
    text-align: center;
    font-size: 24px;
    font-weight: 500;
}
.footer a {
    color: white;
}