* {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
}

section {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    /* flex-direction: column; */
    gap: 100px;
    padding-top: 50px;
}


.form, #container {
    padding-right: 20px;
    padding-left: 20px;
}

#container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
    padding-bottom: 75px;
}

article {
    width: 90%;
    max-width: 300px;
    height: 550px;
    display: flex;
    overflow: scroll;
    flex-direction: column;
    gap: 7px;
    text-align: center;
    justify-content: center;
    align-items: center;
    box-shadow: 5px 5px 5px 5px rgb(223, 223, 223);
    padding: 25px;
    transition: 1s;
    border-radius: 20px;
    color: black;
    overflow-y: auto;
    overflow-x: hidden;
}



article::-webkit-scrollbar {
  display: none;
}


article img {
    height: 200px;
    width: 200px;
    border-radius: 50%;
    margin-bottom: 10px;
}

article p {
    margin-top: 10px;
}

article:hover {
    transition: 1s;
    transform: scale(1.02);
    cursor: pointer;
}

.form {
    min-width: 250px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 30px 20px 30px;
    box-shadow: 5px 5px 15px 2px rgb(213, 213, 213);
    border-radius: 10px;
}

input {
    width: 85%;
    padding: 8px;
    border-radius: 12px;
    border: 2px solid rgb(187, 187, 187);
}

.btn {
    width: 85%;
    padding: 10px 60px 10px 60px;
    margin-top: 10px;
    outline: none;
    border: none;
    background-color: black;
    color: white;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.6s;
    font-weight: 600;
}

#submit:active {
    transform: scale(0.6);
    transition: 0.6s;
}

