body {
    font-family: Arial, sans-serif;
}

.project_title_container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-content: center;
    align-items: center;
}
  
#project_title {
    text-align: center;
    grid-column: 2/4;
    color: #38423C;
}

.italic {
    font-style: italic;
}

.text {
    text-align: center;
    align-self: center;
}

@media only screen and (max-width: 600px) {
    
    #project_title {
        font-size: 20px;
        padding: 20% 5% 20% 5%;
        grid-column: 1/5;
    }

    .text {
        text-align: center;
        align-self: center;
    }

}