/*
    GENERAL CSS
*/

body{
    font-family: 'Courier New', Courier, monospace;
    margin: 0;
    background-color: wheat ;
}
.page-body{

    width: 100vw;
    height: 100vh;
}
a{
    text-decoration: none;
}
@media only screen and (min-width: 600px) {
    .shown{
        display: block !important;
    }
} 
.clickable{
    color: blue;
    text-decoration: underline;
}
/*
    MAIN PAGE CSS
*/
#main-page-body{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
#main-page-footer{
    position: fixed;
    bottom: 0;
    padding-bottom: 10px;
    width: 100vw;
    text-align: center;
}
#main-page-footer > span *{
    display: inline;
}
#main-page-footer ul *{
    display: inline;
}
#main-page-body > div{
    display: flex;
    align-items: center;
    justify-content: center;
}
#main-page-body > div > * {
    margin-inline: 22px;
}
@media only screen and (min-width: 600px) {
    #main-page-body > div > * {
        max-width: 30vw;
    }
} 

#main-image-wrapper{
    width: 250px;
    height: 250px;
}
#main-image-wrapper img{
    border-radius: 20%;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*
    PROJECTS PAGE CSS
*/
#projects-page-body{
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
#projects-grid{
    width:fit-content;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.pointer-space > .pointer.img-wrapper > img{
    display: none;
}
.project-card{
    width: 200px;
    height: 200px;
    margin: 10px;
    overflow: hidden;
}
.project-card .img-wrapper{
    width: 200px;
    height: 200px;
    overflow: hidden;
}

.project-card .img-wrapper > img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    transition: .2s ease-in-out;
}

.project-card:hover .img-wrapper:not(.pointer) > img{
    transform: scale(1.3);
}

.project-card .card-title{
    height: 20%;
    width: 100%;
    margin-top:-20%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(182, 182, 182, 0.8);
    text-align: center;
    color: white;
}
@media only screen and (min-width: 600px) {
    #main-page-body > div > * {
        max-width: 30vw;
    }

.pointer-space{
    height: 50px;
    width: 100%;
    display: flex;
    justify-content: center;
}
.pointer.img-wrapper{
    width: 50px;
    height: 50px;
}

.project-card{
    height: 250px;
}
} 