body {
    font-family: Arial, Helvetica, sans-serif;
    padding: 0;
    margin: 0;
    background: #ececec;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

h1 {
    margin: 100px;
    display: flex;
    justify-content: center;
}

p {
    margin: 0;
}

.ProjectsContainer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 0 20px;
    margin-bottom: 60px;
}

.ProjectContainer {
    width: 200px;
    height: 182px;
    padding: 20px 10px 50px 10px;
    border-radius: 10px;
    background: white;
    box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    position: relative;
}

.ProjectContainer:hover {
    transform: scale(1.02);
    box-shadow: 8px 8px 12px rgba(0, 0, 0, 0.12);
}

.ProjectLink {
    display: inline-block;
    text-decoration: none;
    color: inherit;
}

.NotForMobile {
    position: absolute;
    width: 20px;
    height: 20px;
    top: 10px;
}

.Image {
    width: 200px;
    height: 150px;
    object-fit: contain;
}

.Title {
    margin-top: 10px;
    font-size: 16px;
}

.TitleDescription {
    font-size: 12px;
    color: #5C5C5C;
}

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    height: 50px;
    margin-top: auto;
}

footer a, footer p {
    color: #5C5C5C;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.SocialMedia {
    display: flex;
    gap: 8px;
}

.SocialMedia a:hover {
    transform: scale(1.2);
}

@media (max-width: 600px) {
    footer {
        font-size: 12px;
    }
}

@media (max-width: 470px) {
    footer {
        flex-direction: column;
        align-items: center;
        gap: 6px;
        margin-bottom: 50px;
    }
}

@media (max-width: 380px) {
    h1 {
        margin: 100px 0 100px 0;
    }
}
