@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', arial;
    color: #fff;
}

body {
    background: #070d0f;
    overflow-x: hidden;
    padding-bottom: 20vh;
    position: relative;
}

nav {
    width: 100vw;
    height: 14vh;
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: 100px;
    position: relative;
}

nav::after {
    content: "";
    width: 95vw;
    height: 1px;
    max-width: 600px;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 0);
    background: #ccc;
}

nav > a {
    font-size: 1.2rem;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    padding: 4vh;
    height: 100%;
    display: flex;
    align-items: center;
}

nav > a:hover {
    background: #2c2c2c;
    cursor: pointer;
}

main {
    width: 100vw;
    max-width: 1200px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    padding-top: 5vh;
}

main > h1 {
    font-size: 3rem;
    width: 100%;
    text-align: center;
}

.projects {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    padding-top: 20px;
}

.projects img {
    max-width: 1000px !important;
    margin-bottom: 20px;
}





.footer {
    position: absolute;
    left: 5px;
    bottom: 5px;
    width: fit-content;
    height: fit-content;
}