ul {
    list-style: none;
}

* {
    margin: 0;
    padding: 0;
}

body {
    font-size: 0;
    background-color: #1B4965;
    font-family: sans-serif;
}

a {
    font-size: 22px;
}

h1{
    font-size: 44px;
    color: azure;
}

.header {
    text-align: center;
    background-color: #2B2D42 ;
    padding: 32px 0;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px azure;
    transition: all 1s;
}

.header:hover {
    text-shadow: 2px 2px 15px #FFBC42;
    box-shadow: 0 15px 23px azure;
}

.list {
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
    width: 90%;
    position: relative;
}

.links {
    display: block;
    background-color: #FFBC42;
    margin-bottom: 20px;
    padding: 14px 0;
    color: black;
    text-decoration: none;
    font-weight: 800;
    border-radius: 8px;
    transition: all 1s;
}

.links:hover {
    box-shadow: 5px 5px 15px azure;
    background-color: #ff9900;
}

.links::before {
    position: absolute;
    display: inline-block;
    content: '';
    width: 26px;
    height: 26px;
    left: 15px;
    background-size: 26px;
    transition: all 1s;
}

.links:before {
    background-image: url(./CV/close-eyes.png);
}

.links:hover:before {
    background-image: url(./CV/open-eyes.png);
}

.list-wrapper {
    display: flex;
    flex-direction: column-reverse;
}

.f {
    display: sub
}



