@font-face {
    font-family: "defaultFont";
    src: url('https://fonts.gstatic.com/s/inconsolata/v32/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lpp4U8WR32lw.woff2');
}

* {
	font-family: 'defaultFont';
    font-weight: bold;
}

:root{
    --charcoal: rgb(25, 25, 25);
    --lightCharcoal: rgb(40, 40, 40);
}

body {
	margin: 0;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: cover; 
    /*background-image: url(../Assets/main-website-background.jpg);*/
    background-color: var(--charcoal);
    color: whitesmoke;
}

/*---Special Classes---*/
.filter-invert{
    filter: invert(1);
}

/*---Navbar---*/
.navbar{
    display: flex;
    align-items: center;
    flex-direction: row;
    width: 100%;
    height: 5%;
    margin-top: 1vh;
}
.name {
    width: 25%;
    display: flex;
    justify-content: center;
}
.name h1{
    text-wrap: nowrap;
    font-size: 2.5em;
}
.name h1:hover{
    cursor: default;
}
.navbarMenu{
    width: 50%;
    display: flex;
    justify-content: center;
    gap: 5vh;
}
.navbarMenu span{
    transform: translateY(1vh);
    min-width: fit-content;
    padding: 2vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.navbarMenu span:hover{
    cursor: pointer;
    background-color: whitesmoke;
    color: var(--charcoal);
    border-radius: 1pc;
}
.navbarMenu span a{
    font-size: 1.2em;
}

/*---Content---*/
.content{
    margin-top: 15vh;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: fit-content;
    flex-direction: column;
}
.info{
    width: 55%;
    display: flex;
    flex-direction: row;
    height: 45vh;
    margin-bottom: 3vh;
    justify-content: center;
}
/*---About---*/
.about{
    width: 65%;
    height: 100%;
    display: flex;
    flex-direction: row;
    gap: 10vh;
    align-items: center;
}
.logo{
    width: 30%;
    height: 75%;
}
.logo img{
    height: 100%;
    filter: drop-shadow(10px 10px 6px rgb(0, 0, 0));
}
.aboutText{
    width: 70%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding-right: 1vh;
}
.aboutText h1{
    font-size: 2.5em;
    margin-bottom: 0;
}
/*---Links---*/
.links{
    display: flex;
    flex-direction: column;
    gap: 3vh;
    width: 35%;
    max-width: 18vw;
    height: 100%;
    align-items: center;
    justify-content: center;
}
.link{
    width: 100%;
    height: 8vh;
    min-height: fit-content;
    background-color: var(--lightCharcoal);
    gap: 2vh;	
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5vh;
    border-radius: 0.5pc;
    transition: all 250ms ease-in-out;
    box-shadow: 8px 8px 10px 0 rgba(0,0,0,0.8);
}
.link:hover{
    cursor: pointer;
    filter: invert(1);
    transition: all 250ms ease-in-out;
}
.link i{
    transform: scale(2.6);
    margin-left: 20%;
}
/*---Location---*/
.location{
    width: 35%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: fit-content;
}
.earth{
    width: 100%;
    height: 100%;
    background-color: var(--lightCharcoal);
}

/*---Technologies---*/
.technologies{
    width: 60%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 7vh;
}
.technologiesList{
    margin-top: 2vh;
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3vh;
}
.technologyCard{
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 20vh;
    height: 8vh;
    background-color: var(--lightCharcoal);
    border-radius: 0.5pc;
    overflow: hidden;
    box-shadow: 8px 8px 10px 0 rgba(0,0,0,0.8);
    transition: all 250ms ease-in-out;
}
.technologyCard:hover{
    cursor: pointer;
    transform: scale(1.1);
}
.technologyCardIcon{
    height: 100%;
    width: 35%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.technologyCardIcon img{
    height: 65%;
}
.technologyCardIcon i{
    transform: scale(2.6);
}
.technologyCardText{
    width: 65%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 1vh;
}
.technologyCardText h3{
    font-size: 1.1em;
}
/*---Projects---*/
.projects{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.projects h1{
    font-size: 2.5em;
    margin-bottom: 6vh;
}
.projectsContent{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 70%;
    min-height: fit-content;
    gap: 10vh;
}
.card{
    height: 55vh;
    width: 35%;
    display: flex;
    flex-direction: column;
    background-color: var(--lightCharcoal);
    border-radius: 0.5pc;
    overflow: hidden;
    box-shadow: 8px 8px 10px 0 rgba(0,0,0,0.8);
    transition: all 250ms ease-in-out;
}
.cardImage{
    height: 50%;
    overflow: hidden;
    transition: all 250ms ease-in-out;
}
.cardImage:hover{
    cursor: pointer;
    transform: scale(1.2);
    transition: all 250ms ease-in-out;
}
.card:has(.cardImage:hover){
    overflow: visible;
}
.cardImage img{
    width: 100%;
    transform: translateY(-5vh);
}
.cardBody{
    height: 50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}
.cardBody h1{
    margin-bottom: 1vh;
}
.cardBody p{
    width: 90%;
}
/*---Rating---*/
.ratingBody{
    width: 100%;
    height: 15%;
    display: flex;
    justify-content: flex-end;
}
.rating{
    width: fit-content;
    padding: 1vh;
    background-color: var(--charcoal);
    transform: scale(1.2);
    align-self: flex-end;
    justify-self: flex-end;
    margin-right: 3vh;
    border-radius: 0.5pc;
    margin-bottom: 3%;

}
.fa-thumbs-up{
    color: green;
    transition: all 250ms ease-in-out;
}
.fa-thumbs-down{
    color: red;
    transition: all 250ms ease-in-out;
}
.fa-thumbs-up:hover, .fa-thumbs-down:hover{
    cursor: pointer;
    color: whitesmoke;
    transition: all 250ms ease-in-out;
}
.voteIsActive{
    background-color: orange;
    padding: 5px;
    border-radius: 1pc;
}

/*---Footer---*/
.footer{
    margin-top: 10vh;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 10vh;
    background-color: var(--charcoal);
}