body {
    background-color: black;
    color: black;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
}

.container {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100vh;
}

.large-circle {
    width: 200px; /* Увеличен размер круга */
    height: 200px; /* Увеличен размер круга */
    border-radius: 50%; 
    overflow: hidden; /* Обрезает изображение по кругу */
    margin: 20px 0; /* Центрируем и добавляем отступ сверху и снизу */
    background-color: rgba(255, 255, 255, 0.1); /* Фоновый цвет, если изображение не загружается */
    border: 4px solid white; /* Добавлена белая обводка */
}

.large-circle img {
    width: 100%;
    height: auto;
    display: block;
}

h1 {
    color: white;
    margin: 20px 0;
}

.clickable-text, .python-link {
    color: #00BFFF; /* Синий цвет */
    text-decoration: none;
    font-size: 18px;
    margin-bottom: 10px;
    display: inline-block;
}

.clickable-text:hover, .python-link:hover {
    text-decoration: underline;
}

.python-link:visited {
    color: #00BFFF; /* Синий цвет остается после посещения ссылки */
    text-decoration: none;
}

.developer-text {
    color: white;
    font-size: 18px;
    margin: 10px 0;
}

h2 {
    color: white;
    margin: 20px 0;
}

.projects-title {
    color: white; 
    margin-top: 40px; 
}

.circles {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.circle-border {
    width: 70px; 
    height: 70px; 
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: transform 0.3s; 
}

.circle-border:hover {
    transform: scale(1.1); 
}

.circle-content {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden; /* Чтобы изображение не выходило за пределы круга */
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle-content img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Изображение будет заполнять весь круг */
    border-radius: 50%; /* Округляем изображение */
}

.projects {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.project {
    width: 200px;
    border: 2px solid white;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 10px;
    text-align: center;
    transition: transform 0.3s;
    text-decoration: none;
    color: rgb(255, 255, 255); 
}

.project:hover {
    transform: scale(1.05);
}

.circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
