@font-face {
    font-family: 'quicksand';
    src: url('./webFonts/Quicksand/Quicksand-VariableFont_wght.ttf');
}

/* MAIN PAGE STYLE */
body{
    margin: 0;
    padding: 0;
    font-family: 'quicksand';
    color: white;
    background-color: black;
    background-image: url("./images/flat-lay-of-workstation-with-copy-space-and-laptop.webp");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

header{
    text-align: center;
    width: 43%;
    min-height: 40vh;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.bk-img{
    display: none;
}

header p {
    font-size: 17px;
    margin-bottom: 1.67em;
} 

main{
    min-height: 40vh;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
}

.mainLink{
    text-decoration: none;
}

.mainLinkText{
    z-index: 2;
}

.profileImg{
    width: 250px;
    height: 250px;
    object-fit: cover;
    object-position: top;
    border-radius: 286px;
    border: 10px solid black;
    margin-left: 10px;
    margin-top: 34px;
}

.aboutMeLink{
    display: none;
}

.container{
    position: relative;
    width: 300px;
    height: 200px;
    margin: 10px;
    background-color: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 24px;
    text-align: center;
    text-decoration: none;
    transition: all 0.7s;
    border-radius: 10px;
    overflow: hidden;
}

.projImageWrapper{
    text-align: center;
}

.container:hover{
    transform: scale(1.2);
}

.mainLinkBackground{
    width: 121%;
    position: absolute;
    z-index: 1;
    filter: blur(2px);
    border-radius: 10px;
}

.socialMedia.email svg {
    fill: white;
}


footer{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    align-items: center;
    justify-content: space-evenly;
    bottom: 11px;
    width: 100%;
}

.socialMedia {
    margin-bottom: 25px;
}

footer a {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    color: white;
    text-decoration: none;
}

@media screen and (max-width: 650px) {
    .bk-img{
        display: block;
        position: fixed !important;
        width: 231% !important;
        z-index: -1;
        transform: rotate(90deg);
        left: -80%;
    }
    
    header{
        width: 75%;
    }

    .project{
        flex-direction: column;
        flex-wrap: nowrap;
    }

    .projImage {
        width: 80%;
        padding: 35px;
        border-radius: 45px;
    }

    footer{
        position: initial;
        margin-top: 49px;
        padding-bottom: 20px;
    }

    .socialMedia.email, .socialMedia.phone{
        backdrop-filter: brightness(0);
        border-radius: 34%;
        padding: 2px;
    }
}

.goHome{
    background-color: white;
    color: black;
    font-weight: 900;
    font-size: 49px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    height: 37px;
    line-height: 46px;
    position: fixed;
    top: 15px;
    padding: 10px 25px;
    border-radius: 0 35px 35px 0;
    left: -111px;
    cursor: pointer;
    transition: all 0.7s;
}