body {
    background: linear-gradient(270deg, #a8edea, #fed6e3, #a8edea);
    background-size: 600% 600%;
    animation: gentleGlow 60s ease infinite;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    user-select: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background 0.5s ease;
}

@keyframes gentleGlow {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* input styles */

.inputBox {
    position: absolute;
    top: 20vh;
    left: 51%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(8px);
    padding: 15px 25px;
    border-radius: 15px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 10px;
    align-items: center;
}

.inputBox input {
    padding: 10px 15px;
    border-radius: 10px;
    border: 1px solid #ccc;
    outline: none;
    font-size: 1.3rem;
    flex: 1;
    min-width: 200px;
}

.inputBox button {
    padding: 10px 20px;
    background: linear-gradient(to right, #a8edea, #fed6e3);
    border: none;
    border-radius: 10px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.inputBox button:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.container {
    background-color: rgba(255, 255, 255, 0.75); /* напівпрозорий білий */
    backdrop-filter: blur(10px); /* розмиття фону */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1); /* м’яка тінь */
    border-radius: 20px; /* заокруглення */
    padding: 30px 40px;
    max-width: 1200px;
    width: 90%;
    text-align: center;
    transition: transform 0.3s ease;
    font-size: 1.5rem;
}

.container:hover {
      transform: scale(1.03);
}

.containerOfDivs {
    display: flex;
}

/* styles for avatar */

.avatar {
    display: none;
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

/* styles for name and followers */

.infoContainer {
    display: flex;
    flex-direction: column;
}

.nameAndFollowers {
    display: flex;
    justify-content: space-around;
}

.locationAndTimeCreated {
    display: flex;
    justify-content: space-around;
}

.name {
    font-weight: bold;
    margin-top: 30px;
}

.nameHREF {
    text-decoration: none;
    transition: transform 0.3s ease, color 0.3s ease;
    color: #333333;
}

.nameHREF:hover {
    transform: scale(1.03);
}

.containerOfFollowers {
    display: flex;
}

.nameContainer {
    margin-left: 60px;
}

.followers {
    margin-left: 150px;
    margin-right: 50px;
}

.following {
    margin-right: 50px;
}

.descriptionContainer {
    display: none;
    border-top: 1.5px solid gray;
}