@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

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

a{
    font-weight: 600;
    color: black;
    text-decoration: none;
}

body{
    display: flex;
    flex-direction: column;
    font-family: 'Poppins', sans-serif;
    width: 100vw;
    height: 100vh;
    
}

.description{
    text-align: center;
    color: black;
}

footer{
    text-align: center;
    margin-bottom: 1.5rem;
}

h1{
    margin: 2rem;
}

main{
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
}

#projects{
    display: flex;
    width: 90%;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 4rem;
}

.project{
    display: flex;
    flex-direction: column;
    width: max-content;
    height: max-content;
    cursor: pointer;
    transition: .2s;
    padding: 6px;
    border-radius: 8px;
}
.project:hover{
    scale: 1.02;
    transition: .2s;
    background-color: rgba(184, 184, 184, 0.521);
}

.project img{
    width: 8rem;
}

#subtitle{
    width: 90%;
    margin-bottom: 4rem;
    border: 1px solid rgb(206, 206, 206);
    padding: 3px;
    border-radius: 6px;
    background-color: rgb(235, 235, 235);
}



