#projectcontainer {
    width: 100%;
    min-height: calc(100vh + 80px);
    position: relative;
}

#projectdescriptioncontainer {
    position: fixed;
    top: 240px;
    left: 60px;
    max-width: 400px;
}

#title {
    font-family: 'Euclid-Bold', Helvetica, sans-Serif;
    font-size: 20px;
    padding-bottom: 20px;
}

#description {
    font-family: 'Euclid-Regular', Helvetica, sans-Serif;
    font-size: 16px;
    padding-right: 20px;
}

#subdescription {
    font-family: 'Euclid-Regular', Helvetica, sans-Serif;
    font-size: 12px;
    padding-right: 20px;
    line-height: 24px;
}

.link {
    color: black;
    text-decoration: underline 1px black;
}

.link:hover {
    color: rgb(55, 81, 226);
    text-decoration: underline 1px rgb(55, 81, 226);
}


#projectcontentcontainer {
    width: auto;
    height: auto;
    display: flex;
    padding-left: calc(100% - 600px);
    padding-bottom: 20px;
}

#projectimagecontainer {
    max-width: 600px;
    height: auto;
    display: flex;
    padding-top: 90px;
    gap: 60px;
    flex-direction: column;
}


.image {
    width: 100%;
    height: auto;
}

/* @media (max-width: 1600px) {
    
    #projectdescriptioncontainer {
        width: 50%;
    }
    
    #projectimagecontainer {
        width: 50%;
    }
} */

@media (max-width: 1200px) {
    #projectcontentcontainer {
        flex-direction: column;
        padding-left: 0px;
    }
    #projectdescriptioncontainer {
        position: relative;
        width: 100%;
        height: auto;
        top: 0px;
        padding-top: 90px;
        padding-bottom: 40px;
        padding-left: 0px;
        left: 0px;
    }
    
    #projectimagecontainer {
        max-width: 100%;
        height: auto;
        padding-top: 0px;
    }

}

@media (max-width: 600px) {

    #projectdescriptioncontainer {
        position: relative;
        width: 100%;
        height: auto;

    }

}