body{
    background-color: rgb(230,230,230);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
main{
    max-width: 30em;
    margin: 1em auto;
    padding: 12px 8px;
    background-color: whitesmoke;
    border: 1px solid gainsboro;
    
    min-height: 80vh;
}
.main-header{
    text-align: center;
    margin-bottom: 4px;
    letter-spacing: 2px;
}


.projects-section{
    margin: 16px 0;
    border-bottom: 1px solid gainsboro;
}
.projects-title{
    margin: 6px 0;
    font-size: 1.2em;
    font-weight: 500;
}
.projects-description{
    margin: 4px 0;
    color: rgb(64, 64, 64);
    font-size: 0.9em;
}
.projects-description a{
    color: rgb(64, 64, 64);
    text-decoration: none;
}

.project-item{
    display: flex;
    align-items: center;

    margin: 8px 4px;
    padding: 2px;
    border: 1px solid transparent;
}
.project-item:hover{
    background-color: #ededff;
    border: 1px solid silver;
}
.project-item:active{
    background-color: #ededff;
    border: 1px solid royalblue;
}

.project-link{
    color: rgb(32, 32, 32);
    text-decoration: none;
}
.project-link:hover{
    color: blue;
}
.project-link:active{
    color: royalblue;
}

.project-icon{
    height: 32px;
    width: 32px;
    padding: 2px;
    margin-right: 4px;
    border: 1px solid transparent;
}
.project-title{
    margin: 2px 0;

    color: #3f3fc0;
    font-size: 1em;
    font-weight: normal;
}
.project-description{
    margin: 2px 0;
    color: gray;
    font-size: 0.9em;
}

footer{
    text-align: center;
    margin: 6px 0 1em 0;
}
footer a{
    text-decoration: none;
}
footer a:hover{
    text-decoration: underline;
}