body {
    background-image: url('fon.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    font-family: 'Arial', sans-serif;
    text-align: center;
    color: black;
}

.logo {
    width: 69px;
    height: auto;
    vertical-align: middle;
    margin-right: 10px;
}

h1 {
    font-family: 'Lobster', cursive;
    font-size: 40px;
    color: #ff4f5a;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
    text-align: center;
}

button {
    margin: 10px;
    padding: 12px 20px;
    font-size: 1.1em;
    font-weight: bold;
    background: #ff4f5a;
    color: white;
    border: none;
    border-radius: 100px;
    transition: 0.3s;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

button:hover {
    background: rebeccapurple;
    transform: scale(1.05);
}

#students {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 20px;
}

.column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.student-row {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.2em;
}

.student-row img {
    width: 100px;
    height: 100px;
    border-radius: 70%;
    object-fit: cover;
    transition: 0.3s ease-in-out;
}

.student-row a {
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.student-row.male img:hover {
    box-shadow: 0 0 15px #007bff;
    transform: scale(1.1);
}

.student-row.female img:hover {
    box-shadow: 0 0 15px #ff4081;
    transform: scale(1.1);
}

.male {
    color: #007bff;
}

.female {
    color: #ff4081;
}

.student-row a:hover {
    text-decoration: underline;
}
#intro {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.5em;
    font-weight: bold;
    color: black;
    font-family: 'Lobster', cursive;
}

#myName {
    text-decoration: none;
    color: #ff4081;
    font-weight: bold;
}

#myName:hover {
    text-decoration: underline;
}

#myPhoto {
    width: 100px;
    height: 100px;
    border-radius: 70%;
    object-fit: cover;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
}

#myPhoto:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px #ff4081;
}
