* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1{
    color: #426696;
    font-weight: 600;
    font-size: 3rem;
    opacity: 0.8;
}

h2, p{
    color: #658ec6;
    font-weight: 500;
    opacity: 0.8;
}

h3{
    color: #426696;
    font-weight: 600;
    opacity: 0.8;
}

main{
    font-family: "Poppins", sans-serif;
    min-height: 100vh;
    background: linear-gradient(to right top, #65dfc9, #6cdbeb);
    display: flex;
    align-items: center;
    justify-content: center;
}

.glass{
    background: white;
    min-height: 80vh;
    width: 60%;
    background: linear-gradient(to right bottom, rgba(255,255,255,0.7), rgba(255,255,255,0.3));
    border-radius: 2rem;
    z-index: 2;
    backdrop-filter: blur(2rem);
    display: flex;
}

.circle1,.circle2{
    background: white;
    background: linear-gradient(to right bottom, rgba(255,255,255,1), rgba(255,255,255,0.2));
    height: 15rem;   
    width: 15rem;
    position: absolute;
    border-radius: 50%;
}

.circle1{
    top: 5%;
    right: 15%;
}

.circle2{
    bottom: 5%;
    left: 10%;
}



.dashboard{
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    text-align: center;
    background: linear-gradient(to right bottom, rgba(255,255,255,0.7), rgba(255,255,255,0.3));
    border-radius: 2rem;
}

a { color: inherit; } 

.contact-icons{
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: space-evenly;
}
.contact-icons div > span > a > i {
    cursor: pointer;
}

.link{
    display: flex;
    margin: 2rem 0rem;
    padding: 1rem 5rem;
    align-items: center;
    cursor: pointer;
}

.link h2{
    padding: 0rem 2rem;
}

.projects, .works, .educations{
    display: flex;
    flex: 2;
    flex-direction: column;
    justify-content: space-evenly;
    margin: 5rem;

}

.contact{
    background: linear-gradient(to right top, #65dfc9, #6cdbeb);
    border-radius: 2rem;
    color: white;
    padding: 1rem;
}

.contact h2{
    color: white;
    font-weight: 600;
}

.image-chopper{
    width: 200px;
    height: 200px;
    position: relative;
    overflow: hidden;
    border-radius: 50%;
}

.user-img{
    display: inline;
    margin: 0 auto;
    height: 100%;
    width: auto;
}

.status{
    margin-bottom: 3rem;
}

.cards{
    overflow-x: auto;
    height: inherit;
}

.card{
    display: flex;
    background: linear-gradient(to left top, rgba(255,255,255, 0.8), rgba(255,255,255, 0.2));
    border-radius: 1rem;
    margin: 2rem 0rem;
    padding: 2rem;
    box-shadow: 6px 6px 20px rgba(122, 122, 122, 0.2);
    justify-content: space-between;
}

.card-info{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.display-none{
    display: none;
    opacity: 0;
}