@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
}

html{
    font-size: 62.5%;
}

body{
    font-family: 'Poppins', sans-serif;
    width: 100%;
    height: 100vh;
    background-color: #f1f2ed;
    color: black;
}

header{
    position: fixed;
    top: 0;
    left: 0;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1em 6%;
    width: 100%;
}

.logo{
    font-size: 2.5rem;
    font-weight: 600;
    color: #90523d;
    background-color: transparent;
    transition: 0.5s ease;
    
}

.logo:hover{
    transform: scale(1.1);
}

nav a{
    font-size: 1.8rem;
    font-weight: 600;
    display: inline-flex;
    color: black;
    margin-left: 4rem;
    transition: 0.2s ease;
}

nav a.active,
nav a:hover{
    color: #90523d;
    border-bottom: 3px solid #90523d;
}

.project-page-heading{
    margin-top: 5%;
    font-size: 4rem;
    font-weight: 600;
    text-align: center;
}

.project-page-heading span{
    color: #90523d;
}

section{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5%;
    flex-wrap: wrap;
    gap: 5%;
    margin: 1rem 9%;
}

.project-container{
    display: flex;
    flex-direction: column;
    border: 3px solid rgba(255, 255, 255, 0);
    border-radius: 20px;
    width: 80%;
    height: 40vh;
    transition: 0.5s ease;
    margin-bottom: 5%;
    background-color: white;
    padding: 2%;
}

.project-container:hover{
    border: 3px solid #90523d;
    box-shadow: 0 0 15px #90523d;
    transform: scale(1.05);
}

.project-name{
    text-align: center;
    font-size: 2.5rem;
    font-weight: 500;
    color: #90523d;
}

.project-description p{
    text-align: center;
    color:#707070;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.project-description li{
    font-size: 1.6rem;
    margin: 25px 20px;
}

.project-description li::marker{
    color: #90523d;
    font-size: 2rem;
    content: "▹";
}

.demo-run{
    margin-bottom: 5%;
}

