body {
    height: 100vh;
    width: 100vw;
    margin: 0;
    background-color: #08090A;
    color: white;

    font-size: 24px;
    font-family: "Cormorant Garamond", serif;
    font-weight: 300;
    font-style: normal;

    display: flex;
    justify-content: center;
    align-items: center;
}

main {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1, h2, h3, h4, h5, p {
    margin: 0;
}

.main-text {
    margin-bottom: 12px;
}
 
.center-logo {
    width: 139px;
    height: 45px;
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; /* Resize the background image to cover the entire container */

    margin-bottom: 35px;
}

.project-list {
    margin-top: 48px;
    max-width: 450px;
}

.project-list > * + * {
    margin-top: 32px;
}

.project-list-item {
    display: flex;
    align-items: center;
}

.cube-container {
    width: 50px;
    height: 50px;
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; /* Resize the background image to cover the entire container */
} 

.project-details {
    display: flex;
    flex-direction: column;
    margin-left: 24px;
    text-align: left;
    max-width: 380px;
}

.project-link-target {
    text-decoration: none;
    color: white;
}

.project-details-header {
    display: flex;
    align-items: center;
    font-size: 24px;
    margin-bottom: 8px;
}

.project-subtitle {
    font-size: 20px;
    margin-left: 8px;
    padding-left: 8px;
    border-left: 1px solid white;
    margin-top: 3px;
}

.project-description > p {
    font-size: 16px;
    color: #DECFAC;
}

.project-links {
    margin-top: 8px;
    font-size: 12px;
    width: fit-content;
    color: #8B8F97;
    display: flex;
    align-items: center;
}

.project-links > * + * {
    margin-left: 8px;
    padding-left: 8px;
    border-left: 1px solid #8B8F97;
}

.project-link {
    display: flex;
    align-items: center;
}

.project-link > a {
    margin-left: 4px;
    color: #8B8F97;
    text-decoration: none;
}
.project-link > a:hover {
    text-decoration: underline;
}

.project-link-icon {
    height: 12px;
    width: 12px;
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; /* Resize the background image to cover the entire container */
}

/* Media Queries for Mobile Devices */
@media screen and (max-width: 768px) {
    body {
        font-size: 18px;
    }

    main {
        padding: 20px;
    }

    .center-logo {
        width: 150px;
        height: 48px;
        margin-bottom: 25px;
    }

    .project-list {
        margin-top: 32px;
        max-width: 100%;
    }

    .project-list > * + * {
        margin-top: 24px;
    }

    .cube-container {
        width: 40px;
        height: 40px;
    }

    .project-details {
        margin-left: 16px;
    }

    .project-details-header {
        font-size: 20px;
        margin-bottom: 6px;
    }

    .project-subtitle {
        font-size: 16px;
        margin-left: 6px;
        padding-left: 6px;
    }

    .project-description > p {
        font-size: 14px;
    }

    .project-links {
        font-size: 10px;
    }

    .project-link-icon {
        height: 10px;
        width: 10px;
    }
}

@media screen and (max-width: 480px) {
    body {
        font-size: 16px;
    }

    .main-text {
        max-width: 300px;
    }

    .center-logo {
        width: 120px;
        height: 40px;
        margin-bottom: 20px;
    }

    .project-details {
        margin-top: 12px;
    }

    .cube-container {
        width: 30px;
        height: 30px;
    }
}
