body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-image: url(../images/layered-peaks-haikei.svg);
    background-size: cover;
    background-position: center;
    z-index: 5;
    background-attachment: fixed;
}

main {
    padding: 20px;
}

.project-body section {
    padding: 50px;
    padding-left: 20%;
    padding-right: 20%;
    border-radius: 10px;
    margin-top: 100px;
    color: #d1d1d1;
}

.project-body section h2 {
    text-align: center;
    margin-bottom: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    border-radius: 5px;
}

.project-body section h3 {
    font-size: 1.5vh;
    text-align: center;
    padding: 20px 20px;
    border-radius: 5px;
}


.project-body section p {
    text-align: center;
    padding: 20px;
    border-radius: 30px;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4vh;
}

.gras {
font-size: 15px;
    font-weight: bold;
}

.site {
    display: block;
    margin: 20px auto; 
    width: 70%; 
    transition: 1s ease;
    filter: blur(2px); 
    border-radius: 20px;
}

.site:hover {
    transform: scale(1.1); 
    filter: blur(0); 
}



.project-images {
    display: grid;
    grid-template-columns: repeat(3, minmax(100px, 1fr));
    gap: 10px;
    justify-items: center;
    align-items: center;
}

.project-images img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.video-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70vh;
}

iframe{
    text-align: center;
}

.video-container2 iframe {
    min-height: 650px;
}

.help{
    min-height: 650px;
    margin-block: 20px;
}

.video-container2 {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, auto);
    gap: 20px;
    padding-top: 10%;
}

.project-images2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.project-images2 img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}


.container {
    display: flex;
    justify-content: space-around;
    align-items: stretch; 
    margin: 50px;
    flex-direction: row;
    gap: 20px;
}


.social-container {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 30%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center; 
    flex: 1; 
}

.social-container blockquote {
    margin: 0 auto;
}




@media (max-width: 1300px) {
    .container {
        flex-direction: column-reverse;
        align-items: center;
    }

    .contact-container, .social-container {
        width: 100%;
        min-width: 314px;
    }

    .instagram-media{
        min-width: 0;
}
}




@media only screen and (max-width: 768px) {
    .project-body section {
        padding: 30px;
    }

    .project-images2 img {
        height: 200px;
    }

    .project-body section p {
        width: auto;
        padding: 5px;
    }

    .project-images {
        grid-template-columns: repeat(2, minmax(100px, 1fr));
    }

    .project-images img {
        width: 100%;
        height: auto;
    }

    .video-container {
        position: relative;
        width: 100%;
        padding-bottom: 56.25%;
        overflow: hidden;
        margin-bottom: 20px;
        height: 50vh;
    }

    .video-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .site {
        width: 100%; 
        filter: blur(1px); 
    }

    .video-container2 iframe, .help{
        min-height: 200px;
    }
}