@import url('https://fonts.googleapis.com/css2?family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap');

body {
    font-family: 'PT Sans', sans-serif;
}

h1, h2, h3 {
    font-weight: 400;
}

.header {
    text-align: center;
    margin: 20px;
    padding: 20px;
    border-bottom: 1px solid #ccc;
}

.project-image {
    height: 72px;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    
}

.project {
    margin: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 20px;
    width: 80%;
    cursor: pointer;

}

.footer {
    text-align: center;
    margin: 20px;
    padding: 20px;
    border-top: 1px solid #ccc;
}

a {
    color:	#003E74;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}