@import url('https://fonts.googleapis.com/css2?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');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.7.0/font/bootstrap-icons.css");

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

li {
    list-style: none;
}

.row, .row-l, .row-c {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}

.row-c {
    justify-content: center;
}

.row-l {
    justify-content: left;
}

.col-s {
    flex-basis: 190px;
}

.col-m {
    flex-basis: 32%;
}

.col-l {
    flex-basis: 70%;
}

.navbar {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-right: 50px;
    padding-left: 50px;
    font-size: 24px;
}

.nav-title {
    float: left;
    font-weight: 700;
}

.nav-item {
    float: right;
    padding-right: 20px;
    font-weight: 300;
}

.nav-link {
    color: black;
}

#Header {
    font-size: 24px;
    padding-top: 65px;
    padding-bottom: 65px;
    padding-left: 50px;
    line-height: 1.2;
}

.pfp {
    width:167px;
    height: 167px;
    border-radius: 100%;
}

.f-36 {
    font-size: 36px;
    margin-bottom: 0rem;
}

.fr-logo{
    padding: 5px;
    margin-right: 8px;
    border-style: solid;
    border-width: 1px;
    border-color: black;
}

#Project {
    padding: 50px;
}

.project-title{
    text-align: center;
}

.card {
    background-color: black;
    color: white;
    border-style: solid;
    border-color: black;
    border-width: 2px;
    text-align: center;
    line-height: 1.2;
    padding: 80px;
    border-radius: 15px;
    margin: 5px;
    transition: 0.2s;
    width: 220px;
    height: 220px;
}

.card:hover {
    background-color: white;
    color: black;
}

.card-title {
    font-size: 36px;
}

.card-desc {
    font-size: 20px;
}

#About {
    padding: 50px;
}

.picture {
    width: 311px;
    height: 352px;
    border-radius: 15px;
    object-fit: cover;
}

.profile {
    padding-left: 30px;
}

.profile-title {
    font-size: 36px;
    font-weight: 700;
}

.profile-desc {
    font-size: 18px;
    font-weight: 400;
}

footer {
    padding: 50px;
    text-align: center;
    font-size: 24px;
}

.social {
    color: rgb(17, 17, 17);
    padding: 20px;
    font-size: 18px;
    font-weight: 300;
}

@media screen and (min-height: 800px) {
    .navbar {
        padding-right: 300px;
        padding-left: 300px;
    }
    #Header {
        padding-left: 300px;
        padding-right: 300px;
    }
    #About {
        padding: 300px;
    }
    #Project {
        padding-left: 270px;
        padding-right: 270px;
    }
}

@media screen and (max-width: 540px) {
    .row-l {
        justify-content: center;
    }
    .navbar {
        padding-top: 20px;
        padding-bottom: 20px;
        padding-right: 20px;
        padding-left: 20px;
        font-size: 18px;
    }
    .nav-item {
        padding-right: 10px;
    }
    #Header {
        padding-left: 20px;
        padding-right: 20px;
    }
    #Project{
        padding: 20px;
    }
    .card {
        padding: 50px;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .col-m {
        flex-basis: 100%;
    }
    footer {
        padding: 50px;
        text-align: center;
    }
    .social {
        color: rgb(17, 17, 17);
        padding: 5px;
        font-size: 18px;
        font-weight: 300;
    }
    #About {
        padding: 20px;
    }
    .profile {
        padding: 20px;
    }
    .col-l {
        flex-basis: 100%;
    }
}