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

h1 {
    text-align: center;
    font-size: 50px;
    font-family: 'Courier New', Courier, monospace;
    color: #fff;

    padding: 3vw;
    position: relative;
    top: 5vw;
    margin-bottom: 8vw;

    background-color: #313d4b;
    border-radius: 3vw;
}

h2 {
    text-align: center;
    font-size: 45px;
    font-family: 'Courier New', Courier, monospace;
    color: #fff;

    padding: 3vw;
    position: relative;
    top: 5vw;
    margin-bottom: 8vw;

    background-color: #313d4b;
    border-radius: 3vw;
}

p {
    text-align:left;
    font-size: 30px;
    line-height: 150%;
    font-family: 'Courier New', Courier, monospace;
    color:#fff;

    padding: 3vw;


    background-color: #313d4b;
    border-radius: 3vw;
}

.top-bar {
    display: flex;
    justify-content: space-between;

    font-size: 30px;
    font-family: 'Courier New', Courier, monospace;
    color: #fff;

    margin: 0;
    padding: 2vw;

    background-color: #313d4b;
    border-radius: 3vw;
}

.top-bar-left {
    display: inline flex;
    justify-content: flex-start;
}

.top-bar-right {
    display: inline flex;
    justify-content: flex-end;
}

.top-bar a {
    font-size: 30px;
    margin-right: 1vw;
    margin-left: 1vw;
    text-decoration: none;
}

.project-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; 
}

.project-box {
    text-align:left;
    font-size: 30px;
    line-height: 150%;
    font-family: 'Courier New', Courier, monospace;
    color:#fff;

    padding: 3vw;
    margin: 1vw;

    background-color: #2c3743;
    border-radius: 3vw;

    height: 300px;
}

.project-box img {
    height: 100%;
}

.picture-box {
    text-align:left;
    font-size: 30px;
    line-height: 150%;
    font-family: 'Courier New', Courier, monospace;
    color:#fff;

    padding: 3vw;
    margin: 1vw;

    background-color: #2c3743;
    border-radius: 3vw;

    height: 200px;
}

.picture-box img {
    height: 100%;
}

:any-link {
    color: #fff;
}

body {
    margin: 6vw;
    background-color: #212932;
}

@media screen and (max-width: 1000px) {
    p {
        font-size: 200%;
    }
    h1 {
        font-size: 200%;
    }
    h2 {
        font-size: 200%;
    }
    .top-bar a {
        font-size: 110%;
    }
}

.courier-prime-regular {
    font-family: "Courier Prime", monospace;
    font-weight: 400;
    font-style: normal;
}

.courier-prime-bold {
    font-family: "Courier Prime", monospace;
    font-weight: 700;
    font-style: normal;
}

.courier-prime-regular-italic {
    font-family: "Courier Prime", monospace;
    font-weight: 400;
    font-style: italic;
}

.courier-prime-bold-italic {
    font-family: "Courier Prime", monospace;
    font-weight: 700;
    font-style: italic;
}
