* {
    margin: 0px;
    padding: 0px;
    border: 0px;
    outline: 0;
}

html,
body {
    height: 100%;
    width: 100%;
    background-color: #1A1A1D;
    font-family: PixelifySans-Regular;
}

header {
    color: white;
    position: fixed;
}

.name {
    color: white;
    text-align: center;
    margin: 0px 5px;
}

@media (min-width: 601px) {
    .project {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        color: white;
        background-color: #3e3e45;
        border-radius: 20px;
        padding: 20px 20px;
        margin: 0px 10px;
    }
}

@media (max-width: 600px) {
    main {
        flex-direction: column;
    }

    .project {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        color: white;
        background-color: #3e3e45;
        border-radius: 20px;
        padding: 20px 20px;
        margin: 10px 0px;
    }
}

main {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.subproject {
    display: flex;
    justify-content: center;
    align-items: center;
}

.project-logo {
    width: 50px;
    height: 50px;
    margin: 0px 3px;
    border-radius: 100px;
}

.project-name {
    margin: 0px 3px;
}

.link {
    color: pink;
    text-decoration: none;
    transition: .5s;
}

.link:hover {
    color: white;
}