body {
    background-color: #000000;
    position: relative;
    height: 100vh;
}

header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    height: 74px;
    padding: 0 16px;
}

header .button-cv {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    letter-spacing: 0.8px;
    color: #ffffff;
    border: 1px solid #ffffff;
    display: inline-block;
    padding: 12px 24px;
    transition: all 0.25s ease-in-out;
}

header .button-cv:hover {
    color: #000000;
    background-color: #ffffff;
}

.main {
    display: flex;
    align-items: center;
    width: 100%;
    height: calc(100% - 74px - 48px);
}

@media screen and (max-width: 480px) {
    .main {
        height: auto;
        margin: 40px 0;
    }
}

.wrapper {
    text-align: left;
    color: #ffffff;
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 40px;
}

.wrapper .title {
    font-family: 'Francois One', sans-serif;
    font-size: 48px;
    letter-spacing: 3px;
    margin-bottom: 40px;
}

.wrapper p {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    letter-spacing: 0.8px;
    line-height: 24px;
}

.wrapper p:not(:last-child) {
    margin-bottom: 16px;
}

.wrapper p a {
    position: relative;
}

.wrapper p a::after {
    content: '';
    background-color: #ffffff;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 2px;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.25s ease-in-out;
}

.wrapper p a:hover::after {
    opacity: 0;
    transform: translateY(2px);
}

footer {
    width: 100%;
    padding: 16px 0;
}

footer .socials {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0 24px;
}

footer .socials>li {
    font-family: 'Roboto', sans-serif;
    position: relative;
    margin: 0 12px;
}

footer .socials>li>a {
    color: #ffffff;
}

footer .socials>li::after,
footer .socials>li::before {
    content: '';
    background-color: #ffffff;
    position: absolute;
    top: 50%;
    right: -14px;
    transform: translateY(-50%);
    width: 4px;
    height: 1px;
    transition: all 0.25s ease-in-out;
}

footer .socials>li::before {
    right: initial;
    left: -14px;
}

footer .socials>li:hover::after,
footer .socials>li:hover::before {
    height: 4px;
    border-radius: 50%;
}