/* General */


@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

* 
{
    margin: 0;
    padding: 0;
    /* border: rgb(0, 0, 0) 0.1rem solid; */
}

body
{
    font-family: 'Poppins', sans-serif;
}

html
{
    scroll-behavior: smooth;
}

/* Title */

.title
{
    display: flex;
    flex-direction: column;
    text-align: center;
    font-size: 2rem;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.title span
{
    width: 70%;
    height: 5px;
    background-color: black;
    align-self: center;
}

/* Projects */

.projects-container
{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem;
    gap: 2rem;
    flex-wrap: wrap;
}

.project
{
    display: flex;
    flex-direction: column;
    border: rgb(0, 0, 0) 0.2rem solid;
    width: 25rem;
    background-color: white;
    text-align: center;
    padding: 1.5rem;
    border-radius: 2rem;
}

/* .project:hover
{
    transform: scale(1.1, 1.1);
} */

.project-icon
{
    margin: 0.5rem;
    border: black 0.1rem solid;
    border-radius: 2rem;
    padding: 1rem;
    width: fit-content;
    align-self: center;
}

/* Buttons */

.btn
{
    font-weight: 600;
    transition: all 300ms ease;
    padding: 1rem;
    width: 8rem;
    border-radius: 2rem;
    background-color: white;
}

.btn-container
{
    display: flex;
    justify-content: center;
    margin: 1rem;
    gap: 1rem;
}

.btn:hover
{
    background-color: black;
    color: white;
    cursor: pointer;
}