@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap");

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body, html{
    font-family: 'Oswald', sans-serif;
    font-size: 62.5%;
}
body{
    font-size: 1.6rem;
}
.container {
    display: flex;
    flex-direction: column;
    height: 100vh;
    align-items: center;
    justify-content: center;
    gap: 4rem;
  }
.search{
    display: flex;
    width: 50%;
    max-width: 60rem;
}

.search input{
    padding: 1rem 2rem;
    width: 100%;
}

.search input:focus-visible{
    outline: 1px solid purple;
}

.p-btn{
    padding: 1rem 2rem;
    background-color: purple;
    color: white;
    border: none;
    cursor: pointer;
}

#profileContainer{
    width: 100%;
}

.Profile-box {
    margin: auto;
    padding: 4rem 2rem;
    width: 90%;
    max-width: 78rem;
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
    transition: 0.5s ease-in;
}
.Profile-box:hover {
    transform: rotate(-3deg) scale(1.02);
    box-shadow: 0 0 2rem rgba(0, 0, 0, 0.2);
}

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

.top-section button {
    align-self: center;
}

.left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.left h1 {
    font-size: 1.6rem;
}

.about-section {
    margin: 2rem;
}

.status{
    display: grid;
    margin: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
}

.status-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.avatar{
    height: 10rem;
    width: 10rem;
}
.avatar img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 50%;
}

