body {
    padding: 0;
    margin: 0;
    background-color: aliceblue;
    background-color: hsl(54, 67%, 91%);
    color: black;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
        Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
.wrapper {
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.main-title {
    font-size: 4rem;
    margin-bottom: -50px;
}
.card-list {
    width: 100vw;
    display: flex;
    overflow-x: scroll;
    padding: 100px 20px;
    overflow-x: scroll;
    margin-left: 50px;
}

.card {
    display: flex;
    flex-direction: column;
    height: 450px;
    width: 400px;
    padding: 1.5rem;

    border-radius: 2rem;
    background: White;
    border: 3px solid black;
    box-shadow: 0 0 10px 2px hsl(0, 0%, 26%);
    transition: 0.2s;
}
.card-header {
    height: 95%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
}
.card:hover {
    transform: translateY(-3rem) rotate(-5deg);
}

.card:hover ~ .card {
    transform: translateX(130px);
}

.card:not(:first-child) {
    margin-left: -130px;
}

.links {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
a {
    text-decoration: none;
    color: black;
}
a:visited {
    color: black;
}
.view-img {
    height: 55px;
    width: 55px;
    border: none;
}
.github-img {
    height: 40px;
    width: 40px;
    border: none;
}
.preview-img {
    height: 300px;
    width: 350px;
    object-fit: cover;
    border: 1px solid gray;
}
.project-title {
    margin-top: 10px;
    font-size: 2rem;
}
