@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&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;
    font-family:poppins;
    outline: none;
}

body {
    background-color: #17171a;
    padding: 30px;
}

form h1 {
    color:white;
    font-weight: 400;
}

input {
    background: transparent;
    border: 1px solid grey;
    padding: 7px 25px 7px 7px;
    border-radius: 7px;
}

::placeholder, button, input, #navigation {
    color:white;
}

#navigation {
    margin-bottom: 25px;
}

form button, #navigation{
    padding: 7px;
    border-radius: 7px;
    background-color:#3875e0; 
    border: none;
    cursor: pointer;
    text-decoration: none;
}

form button:active {
    transform: scale(0.7);
    transition: all;
}

.userContainer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    flex-shrink: none;
}

.userContainer h2{
    font-weight: 500;
}

.userContainer .userCard {
    margin-top: 30px;
    width: 400px;
    overflow: hidden;
    padding: 10px;
    border-radius: 12px;
    background-color: #262629
}

.userCard #profilePic {
    width: 100%;
    height: 400px;
    background-color: yellow;
    overflow: hidden;
    border-radius: 12px;
}


#profilePic img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.aboutUser {
    margin: 10px 0px 20px 0px;
    color:white;
    line-height: 25px;
}

.customize {
    display: flex;
    justify-content: space-between;
}