html {
    font: 1.5rem 'Courier New';
}

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

header h1 {
    margin-bottom: 0;
}

nav ul {
    display: flex;
    list-style-type: none;
    padding: 0;
}

nav ul li {
    margin-right: 1rem;
}

nav ul li a {
    text-decoration: none;
}

body {
    margin: 0;
}

main {
    padding: 0 5rem 0 5rem;
}

#project-container {
    display: grid;
    grid-template-columns: 30% 30% 30%;
    justify-content: space-around;
    gap: 2rem;
    margin: 1rem;
}

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

.project-card {
    background-color: #e1eaf7;
    border-radius: 30px;
    padding: 25px;
    text-decoration: none;
}

.project-card:hover {
    text-decoration: underline;
    box-shadow: 5px 10px gray;
}

.project-img{
    width: 100%;
}

footer {
    background-color: black;
    color: white;
    height: 10vh;
}

@media screen and (max-width: 1100px) {
    #project-container {
        grid-template-columns: 50% 50%;
    }
}

@media screen and (max-width: 780px) {
    main {
        padding: 0 1rem 0 1rem;
    }

    #project-container {
        grid-template-columns: 100%;
    }
}