@import url('https://fonts.googleapis.com/css2?family=Alex+Brush&family=Mulish:wght@300;700&family=Quicksand:wght@500;700&display=swap');

* {
    box-sizing: border-box;

}

body{
    font-family: 'Mulish', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}
h2{
    font-size: xx-large;
    font-weight: bolder;
    text-align: left;
}
#projectlicenses{
    text-align: center;
}
header{
    display: inline;
}
nav{
    display: flex;
    background-color: #89b0d9;
    top: 0;
    justify-content: space-around;
    color: white;
    font-weight: bolder;
    position: sticky;
    z-index: 1;
}
nav ul{
    display: flex;
    list-style-type: none;
    width: 50%;
    justify-content: space-between;
}
nav ul li a{
    color: white;
    text-decoration: none;
}
nav ul li a:hover{
    color: #2D3E50;
    font-weight: bolder;

}
nav .icon {
    font-family: 'Alex Brush', sans-serif;
    letter-spacing: 2px;
    text-decoration: none;
}
.icon{
    text-decoration: none;

}
main{
    padding: 30px;
    display: flex;
    gap: 1rem;
}
#content{
    flex: 5;
    display: flex;
    flex-flow: column;
    gap: 1rem 10rem;
}

main aside .profile card{
    display: flex;

}
main aside .social-media {
    height: 100%;
    display: flex;
    inset-inline-start: 0;
    inset-block: 0;
    position: fixed;
}
main aside .social-media ul {
    padding: 2rem 1rem;
    margin: auto;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
    background-color: #89b0d9;

    display: flex;
    flex-flow: column nowrap;
    align-items: stretch;
    justify-content: left;
    gap: 1rem;
}

main aside .social-media li {
    list-style-type: none;
}

main aside .social-media li a {
    text-decoration: none;
    font-size: 1em;
    color: white;
    transition: all .1s ease-in-out;
}

main aside .social-media li a:hover {
    color: #2D3E50;
}

.jumbotron {
    padding: 120px;

    background:
            linear-gradient(
                    rgba(0, 0, 0, 0.5),
                    rgba(0, 0, 0, 0.5)
            ),
            url('https://media.licdn.com/dms/image/D5616AQEIFhK09__egw/profile-displaybackgroundimage-shrink_200_800/0/1672070752638?e=2147483647&v=beta&t=g-DHH85c_jDbxeaEdhGiLEipyN_wh-yatVcfRmDRvhc');
    background-size: cover;
    background-position-y:-25px;
    background-position-x:-19px;
}

.profile header{
    text-align: center;
}
.featured-image{
    width: 100%;
    max-height: 550px;
    object-position: center;
    object-fit: cover;
}
.logo-image{
    width: 100%;
    max-height: 400px;
    object-position: center;
    object-fit: scale-down;
}
.licenses{
    width: 100%;
    max-height: 300px;
    object-position: center;
    object-fit: scale-down;
}
.profile img{
    width: 100%;
    max-height: 500px;
    object-position: center;
    object-fit: cover;
}
.box{
    width: 100%;
    max-height: 400px;
    transition: 0.1s;

}
.box img{
    display: flex;
    width:100%;
    border-radius: 1px;
}
.box:hover{
    transform: scale(1.2);
}
.card{
    box-shadow:0 2px 8px 2px rgba(0, 0, 0, 0.2) ;
    border-radius: 20px;
    padding: 50px;
}

footer {
    padding: 20px;
    color: #fff;
    background-color: #89b0d9;
    text-align: center;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    height: 20px;
    justify-content: space-between;
    position: relative;
    margin-top: 20px;
    margin-right: -5rem;
}
.menu-toggle input{
    position: absolute;
    width: 39px;
    height: 28px;
    opacity: 0;
    left: -8px;
    top: -10px;
    cursor: pointer;
    z-index: 2;
}
.menu-toggle span {
    display: block;
    width: 30px;
    height: 2px;
    background-color: white;
    border-radius: 3px;
    transition: all 1s;
}
/*Hamburger menu animation*/
.menu-toggle span:nth-child(2){
    transform-origin: 0 0;
}
.menu-toggle span:nth-child(4){
    transform-origin: 0 100% ;
}
.menu-toggle input:checked ~ span:nth-child(2){
    transform: rotate(45deg) translate(-3px, -3px);
}
.menu-toggle input:checked ~ span:nth-child(4){
    transform: rotate(-45deg) translate(0,-1px);
}
.menu-toggle input:checked ~ span:nth-child(3){
    transform: scale(0);
}
@media screen and (max-width: 1200px) {
    main{
        flex-flow: column nowrap;
    }
    main aside{
        align-self: center;
    }
}

@media screen and (max-width: 850px) {
    nav ul {
        width: 60%;
    }
    main aside{
        align-self: stretch;
    }
}

@media screen and (max-width: 700px) {
    .menu-toggle {
        display: flex;
    }
    nav ul {
        position: absolute;
        right: 0;
        height: 50vh;
        width: 20vh;
        justify-content: space-evenly;
        flex-direction: column;
        align-items: center;
        background-color: #89b0d9;
        z-index: -1;
        transform: translateX(100%);
        transition: all 2s;
        border-top-left-radius: 12px;
        border-bottom-left-radius: 12px;

    }
}
    nav ul.slide{
        transform: translateX(0);
    }
































/*@import url('https://fonts.googleapis.com/css2?family=Alex+Brush&family=Mulish:wght@300;700&family=Quicksand:wght@500;700&display=swap');*/

/** {*/
/*    box-sizing: border-box;*/
/*}*/

/*body{*/
/*    font-family: 'Mulish', sans-serif;*/
/*    margin: 0;*/
/*    padding: 0;*/
/*    overflow-x: hidden;*/
/*}*/

/*header{*/
/*    display: inline;*/
/*}*/

/*nav{*/
/*    display: flex;*/
/*    background-color: #89b0d9;*/
/*    top: 0;*/
/*    justify-content: space-around;*/
/*    !*padding: 20px 0;*!*/
/*    color: white;*/
/*    position: sticky;*/
/*}*/
/*nav ul{*/
/*    display: flex;*/
/*    list-style-type: none;*/
/*    width: 40%;*/
/*    justify-content: space-between;*/
/*}*/
/*nav ul li a{*/
/*    color: white;*/
/*    text-decoration: none;*/
/*}*/
/*nav ul li a:hover{*/
/*    color: white;*/
/*    font-weight: bold;*/
/*}*/

/*nav .icon {*/
/*    font-family: 'Alex Brush', sans-serif;*/
/*    letter-spacing: 1px;*/
/*}*/
/*main aside {*/
/*    position: fixed;*/
/*    inset-block: 0;*/
/*    inset-inline-end: 0;*/
/*}*/

/*main aside .social-media {*/
/*    height: 100%;*/
/*    display: flex;*/
/*}*/

/*main aside .social-media ul {*/
/*    padding: 1.5rem 1rem;*/
/*    margin: auto;*/
/*    border-top-left-radius: 12px;*/
/*    border-bottom-left-radius: 12px;*/
/*    background-color: #2D3E50;*/

/*    display: flex;*/
/*    flex-flow: column nowrap;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    gap: 1.5rem;*/
/*}*/

/*main aside .social-media li {*/
/*    list-style-type: none;*/
/*}*/

/*main aside .social-media li a {*/
/*    text-decoration: none;*/
/*    font-size: 1.5rem;*/
/*    color: white;*/
/*    transition: all .1s ease-in-out;*/
/*}*/

/*main aside .social-media li a:hover {*/
/*    color: #89b0d9;*/
/*}*/
/*footer {*/
/*    padding: 20px;*/
/*    color: #fff;*/
/*    background-color: #89b0d9;*/
/*    text-align: center;*/
/*}*/
/*.jumbotron {*/
/*    font-size: 20px;*/
/*    padding: 60px;*/
/*    background-color: #00c8eb;*/
/*    text-align: center;*/
/*    color: white;*/
/*}*/
/*.menu-toggle {*/
/*    display: none;*/
/*    flex-direction: column;*/
/*    height: 20px;*/
/*    justify-content: space-between;*/
/*    position: relative;*/
/*    margin-top: 20px;*/
/*    margin-right: -5rem;*/
/*}*/
/*.menu-toggle input{*/
/*    position: absolute;*/
/*    width: 39px;*/
/*    height: 28px;*/
/*    opacity: 0;*/
/*    left: -8px;*/
/*    top: -10px;*/
/*    cursor: pointer;*/
/*    z-index: 2;*/
/*}*/
/*.menu-toggle span {*/
/*    display: block;*/
/*    width: 30px;*/
/*    height: 2px;*/
/*    background-color: white;*/
/*    border-radius: 3px;*/
/*    transition: all 1s;*/
/*}*/
/*!*Hamburger menu animation*!*/
/*.menu-toggle span:nth-child(2){*/
/*    transform-origin: 0 0;*/
/*}*/
/*.menu-toggle span:nth-child(4){*/
/*    transform-origin: 0 100% ;*/
/*}*/
/*.menu-toggle input:checked ~ span:nth-child(2){*/
/*    transform: rotate(45deg) translate(-3px, -3px);*/
/*}*/
/*.menu-toggle input:checked ~ span:nth-child(4){*/
/*    transform: rotate(-45deg) translate(0,-1px);*/
/*}*/
/*.menu-toggle input:checked ~ span:nth-child(3){*/
/*    transform: scale(0);*/
/*}*/

/*@media screen and (max-width: 768px) {*/
/*    nav ul {*/
/*        width: 60%;*/
/*    }*/
/*}*/

/*@media screen and (max-width: 576px) {*/
/*    .menu-toggle {*/
/*        display: flex;*/
/*    }*/
/*    nav ul {*/
/*        position: absolute;*/
/*        right: 0;*/
/*        height: 50vh;*/
/*        width: 20vh;*/
/*        justify-content: space-evenly;*/
/*        flex-direction: column;*/
/*        align-items: center;*/
/*        background-color: #89b0d9;*/
/*        z-index: -1;*/
/*        transform: translateX(100%);*/
/*        transition: all 2s;*/
/*    }*/
/*}*/
/*nav ul.slide{*/
/*    transform: translateX(0);*/
/*}*/















































