* {
    font-family:monospace;
    box-sizing: border-box;
    color: #171717;
}

body, html {
   min-height: 100vh;
   margin: 0;
   position: relative;
}

h1{

    padding-bottom: 5px;
    border-bottom: 1px solid #171717;
    font-size: 42px;
}


main{
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 88px;
    position: relative;
    border: 1px solid transparent;
}

main p{

    line-height: 1.5em;
}

a{

    color:blue;
}

#main_logo{

    width: 64px;
    position: absolute;
    right: calc(100% + 5px);
    bottom: calc(100% + 5px);
}

@media screen and (max-width: 768px) {
    main{
        margin-top:75px;
        padding: 0 20px;
        max-width: 100%;
    }
    #main_logo{
        right: auto;
        left: calc(50% - 32px);
        bottom: calc(100% + 2px);
    }
    
}

footer{

    margin-top: 80px;
    text-align: center;
    font-size: 13px;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    user-select: none;
}

.project{
    padding: 10px;
    border: 1px solid;
    margin-left:20px;
    border-left: 5px solid;
}