*{
    margin: 0;
    padding: 0;
}
@font-face {
    font-family: 'montserrat';
    src: url('fonts/Montserrat-VariableFont_wght.ttf');
}
@font-face {
    font-family: 'progress';
    src: url('fonts/ProgressPersonalUse-EaJdz.ttf');
}
body{
    font-family: "montserrat";
    color: #000000;
    background: #70C23A;
}
#navbar {
    background: #70C23A;
    width: 100%;
    height: 3rem;
    display: flex;
    position: sticky;
    top: 0;
    justify-content: right;
    align-items: center;
    z-index: 100;
}
#navbar div {
    padding-left: 1em;
    padding-right: 1em;
    text-align: center;
    line-height: 3rem;
    font-size: 1.5rem;
    transition: 0.3s ease-in-out;
}
#navbar div:hover {
    background: #72F419;
    cursor: pointer;
}
#main {
    background: #70C23A;
    width: 100%;
    height: 20rem;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    color: #30332E;
}
#main div {
    font-family: progress;
    font-size: 8rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%;
    height: 50%;
}
.project {
    background-color: #648F47;
    width: 100%;
    height: 30rem;
    display: flex;
    justify-content: center;
}
.project > div {
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.project > div > a > img{
    width: 90%;
    margin-left: 0;
}
.project img {
    transition: 0.4s ease-out;
}
.project img:hover{
    opacity: 0.65;
    transition: 0.2s ease-out;
    transform: translateY(-0.1rem);
}
.project div > p {
    font-size: 1.2rem;
}
.projectIcons{
    margin-top: 1rem;
    display: flex;
    justify-content: space-evenly;
    flex-direction: row;
    width: 50%;
    height: 13%;
}
.projectIcons img{
    height: 100%;
}
.about{
    background-color: #648F47;
    width: 100%;
    display: flex;
    justify-content: center;
}
.about div{
    width: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.about div > p {
    font-size: 1.2rem;
}