* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
}

body {
    min-height: 100vh;
    background: #b3ccfa;
    background-image: linear-gradient(to right, #b3ccfa, white);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 120px;
}

header {
    background: white;
    width: 100%;
    padding: 7px 2.5%;
    border-bottom: 2px solid black;
    color: black;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

header h4 {
    font-size: 40px;
    margin: 0;
}

header a {
    position: absolute;
    left: 10px;
    color: black;
}
header, header * {
    text-decoration: none;
}

h1 {
    position: absolute;
    top: 140px;
}

contact {
    display: block;
    position: relative;  /* Важно для абсолютного позиционирования ul */
    min-height: 100vh;
}

contact ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2vw;
    margin: 0;
    padding: 25px;
    position: fixed;
    top: 300px;
    left: 0;
}

contact ul li {
    font-size: clamp(16px, 4vw, 25px);
    font-weight: bold;
    color: #4d4d4d;
    transition: all .6s ease;
}

contact ul li a {
    text-decoration: none;
    color: #4d4d4d;
    transition: all .6s ease;
}

contact ul li img {
    width: 30px;  /* Фиксированная ширина для иконок */
    height: auto;
    margin-right: 10px;
    vertical-align: middle;
}

contact ul li:hover {
    color: black;
    transform: scale(1.05);
}

contact ul li a:hover {
    color: black;
}

