.profile-container {
    display: flex;
    align-items: center;
    background-color: #252a41;
    border: 5px solid #f4a261;
    box-shadow: 0 0 20px 5px rgba(255, 165, 0, 0.7);
    border-radius: 10px;
    padding: 20px;
    max-width: 900px;
}

.containerr {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60vh;
}

.profile-image img {
    width: 210px;
    height: 300px;
    border-radius: 100px;
    border: 4px solid #f4a261;
    box-shadow: 0 0 10px 5px rgba(255, 165, 0, 0.7);
}

.profile-icons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 0 20px;
}

.profile-icons img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    padding: 10px;
    transition: transform 0.3s ease;
    border: 2px solid #f4a261;
    box-shadow: 0 0 8px 5px rgba(255, 165, 0, 0.7);
}

.profile-icons img:hover {
    transform: scale(1.1);
}

.profile-info {
    max-width: 60%;
}

.profile-info h2 {
    color: #ffa500;
    margin-bottom: 10px;
}

.profile-info a {
    color: #ffa500;
    text-decoration: none;
}

.profile-info p {
    line-height: 1.6;
    margin: 10px 0;
}


/* qurulgilarga */
/* tel */
@media (max-width: 480px) {
    header {
        background-color: #007BFF;
    }
  
    main {
        font-size: 14px;
    }
  }
  /* plt */
  @media (min-width: 481px) and (max-width: 1024px) {
    header {
        background-color: #FF9800;
    }
  
    main {
        font-size: 16px;
    }
  }
  /* pc */
  @media (min-width: 1025px) {
    header {
        background-color: #9C27B0;
    }
  
    main {
        font-size: 18px;
    }
  }
  