
body {
    background-color: #282c34;
    color: white;
    font-family: Arial, sans-serif;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.header{
    position: sticky;
    top: 0;
    padding: 10px;
    z-index: 1005;
    background-color: #282c34;
}

.projects-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.project {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 300px;
    background-color: #24262b;
    padding: 15px;
    border-radius: 8px;
    transition: transform 0.3s ease, z-index 0.3s ease;
    position: relative;
}

.project img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.project h1 {
    font-size: 24px;
    margin: 10px 0;
}

.description {
    text-align: center;
    font-size: 16px;
}

#by {
    margin-top: 20px;
    font-size: 14px;
    text-align: center;
}

.project .img {
    display: block;
}

.project .gif {
    display: none;
}

@media (hover: hover) {
    .project:hover {
        transform: scale(1.5);
        z-index: 1;
    }
}

.project:hover .img {
    display: none;
}

.project:hover .gif {
    display: block;
}

.data{
    font-family: 'Courier New', Courier, monospace;
    font-size: x-large;
    
    text-align: center;
}

.data_text{
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    padding: 10px;
    text-align: center;
    margin-left: 15%;
    margin-right: 15%;
}

.data_pictures{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.data_pictures_antman{
    scale: 0.5;
    max-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.project_data {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 300px;
    padding: 15px;
    border-radius: 8px;
    
    position: relative;
}

.centered-text {
    
    text-align: center;
}



.xml_text{
    color: grey;
    font-size: small;
}

.spacing{
   height: 15px;
}
@media (max-width: 800px) {
    .spacing{
        height: 50px;
    }
}
@media (max-width: 600px) {
    .data_text {
        margin-left: 5%;
        margin-right: 5%;
    }

}

