@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

/* // <weight>: Use a value from 200 to 1000
// <uniquifier>: Use a unique and descriptive class name

.nunito-<uniquifier> {
  font-family: "Nunito", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
} */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Nunito", sans-serif;
}

body {
    background-color: #000000;
}

#Parent_div {
    width: 300px;
    height: 430px;
    border-radius: 10px;
    background-color: #fdf8f8;
    text-align: center;
    margin: 70px auto;
    padding: 10px;
    transition: ease-in-out 0.3s;
}

#Parent_div:hover {
    box-shadow: 0 0 20px #ffffff;
    scale: 1.01;
    transition: ease-in-out 0.2s;
}

.childDiv_1 {
    width: 150px;
    height: 150px;
    margin: 0 auto;
    background-color: aquamarine;
    border-radius: 50%;
}

#Profile_heading {
    margin-top: 10px;
}

#Profile_para_1{
    margin-top: 5px;
    font-size: 14px;
    font-weight: 800;
    font-style: italic;
    color: #838282;
}

#Profile_para_2 {
    margin-top: 30px;
}

.Profile_buttons {
    padding: 15px 18px;
    margin-top: 30px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 15px 5px;
    background-color: #dad7d7;
    color: #000000;
    transition: ease-in-out 0.3s;
}

.Profile_buttons:hover {
    cursor: pointer;
    background-color: #b3b1b1;
    color: #000000;
    box-shadow: 0 0 10px #000000;
    transition: ease-in-out 0.3s;
}

.Profile_buttons:focus {
    cursor: progress;
    background-color: #6d6c6c;
    color: #ffffff;
    transition: ease-in-out 0.3s;
}