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


body {
    background: hsl(212, 45%, 89%);
}

.project-wrap {
    font-family: "Roboto", sans-serif;
    width: 100vw;
    height: 100vh;
    background: hsl(212, 45%, 89%);
    display: flex;
    align-items: center;
    justify-content: center;

}


.project {
    width: 300px;
    height: auto;
    padding: 20px 15px;
    background-color: hsl(0, 0%, 100%);
    border-radius: 10px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.img-wrap {
    width: 100%;
    height: 100%;

}

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

h1 {
    font-size: 20px;
    margin: 10px;
    font-weight: 700;
    text-align: center;


    font-family: "Outfit", sans-serif;

    font-style: normal;

}

p {
    font-family: "Outfit", sans-serif;
    font-style: normal;
    font-size: 15px;
    font-weight: 400;
    margin: 25px;
    color: hsl(216, 15%, 48%);
}

.attribution {
    margin-top: 30px;
    font-size: 11px;
    text-align: center;
    color: hsl(228, 45%, 44%);
}

@media screen and (max-width: 375px) {
    h1 {
        font-size: 16px;
    }
}