*
{
    margin: 0;
    padding: 0;
    font-family: Comfortaa, cursive;
    scroll-behavior: smooth;
    box-sizing: border-box;
    color: antiquewhite;
}

body
{
    overflow-x: hidden;
    background-color: rgb(30, 30, 30);
}

.anchor-back
{
    position: fixed;
    bottom: 20px;
    right: 20px;
}

.anchor-back a
{
    display: block;
    color: rgb(30, 30, 30);
    background-color: antiquewhite;
    text-align: center;
    text-decoration: none;
    padding: 20px 50px;
    font-size: 20px;
    border-radius: 20px;
    transition: 0.5s ease;
}

.anchor-back a:hover
{
    color: antiquewhite;
    background-color: rgb(30, 30, 30);
}

.project
{
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: center;
}

.project .title
{
    margin-bottom: 3vh;
}

.project .title h1
{
    text-align: center;
    font-size: 60px;
}

.project .description
{
    width: 40vw;
    margin-top: 3vh;
    margin-bottom: 3vh;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-content: center;
    align-items: center;
    background-color: antiquewhite;
    border-radius: 20px;
}

.project .description .description-title
{
    margin-top: 2vh;
    margin-bottom: 2vh;
}

.project .description .description-title h1
{
    font-size: 50px;
    color: rgb(30, 30, 30);
}

.project .description .divider
{
    width: 80%;
    border-top: 3px solid rgb(30, 30, 30);
}

.project .description .description-content
{
    margin-top: 2vh;
    margin-bottom: 2vh;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.project .description .description-content img
{
    margin-left: 2vw;
    margin-right: 2vw;
}

.project .description .description-content p
{
    margin-left: 2vw;
    margin-right: 2vw;
    width: 60%;
    color: rgb(30, 30, 30);
    font-size: 20px;
    font-weight: 900;
    line-height: 150%;
}

.project .description .description-content p a
{
    color: blue;
    font-size: 20px;
}

.project .contribution
{
    width: 40vw;
    margin-top: 3vh;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-content: center;
    align-items: center;
    background-color: antiquewhite;
    border-radius: 20px;
}

.project .contribution .contribution-title
{
    margin-top: 2vh;
    margin-bottom: 2vh;
}

.project .contribution .contribution-title h1
{
    font-size: 50px;
    color: rgb(30, 30, 30);
}

.project .contribution .divider
{
    width: 80%;
    border-top: 3px solid rgb(30, 30, 30);
}

.project .contribution .contribution-content
{
    margin-top: 2vh;
    margin-bottom: 2vh;
}

.project .contribution .contribution-content p
{
    margin-right: 2vw;
    margin-left: 2vw;
    color: rgb(30, 30, 30);
    text-align: center;
    font-size: 20px;
    font-weight: 900;
    line-height: 150%;
}