:root {
    --background-color: #FFFEFF;
    --gradient-color: #F8D1DC;
    --gradient-light-color: rgba(248, 209, 220, 0.53);
    --third-color: #FAA5B6;
    --secondary-color: #F16D8B;
    --primary-color: #DD2D57;
    --accent-color: #B8214B;
    --border-color: #8C0B34;
    --text-color: #212121;
    --text-light-color: #fafafa;
    --transform-bezier: cubic-bezier(.18,.25,.48,.67);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    background-color: var(--background-color);
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    font-weight: 400;
}
::selection {
    background-color: var(--accent-color);
    color: var(--text-light-color);
}
.flex {
    display: flex;
}
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
::marker {
    color: var(--accent-color);
}
a {
    color: var(--text-color);
    text-decoration: none;
}
nav {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    background-color: var(--primary-color);
    width: 100%;
    height: 45px;
    align-items: center;
    padding: 30px 20px;
    z-index: 1;
    border-bottom: 2px solid var(--border-color);
}
nav a {
    flex-direction: column;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: var(--text-light-color);
    background: linear-gradient(90deg, var(--text-light-color), var(--text-light-color));
    -webkit-background-clip: text;
    background-clip: text;
    margin: 0 10px;
    height: 30px;
    font-size: 1.1rem;
    transition: background 0.3s ease, color 0.3s ease;
}
nav a:hover {
    color: transparent;
    background: linear-gradient(90deg, var(--text-light-color), var(--gradient-color));
    -webkit-background-clip: text;
    background-clip: text;
}
nav a::after {
    position: absolute;
    bottom: 2px;
    left: 0;
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    transform: scaleX(0);
    transform-origin: right;
    background: linear-gradient(90deg , var(--text-light-color), var(--gradient-color));
    transition: transform 0.3s var(--transform-bezier);
}
nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}
nav > a::after {
    width: 0;
}
nav ul {
    list-style-type: none;
    width: 40%;
    justify-content: space-evenly;
    margin: 0 auto;
}
nav img {
    width: 50px;
    height: 50px;
}
img {
    width: 100%;
    height: auto;
}
p, li {
    font-weight: 400;
}
strong, b {
    color: var(--accent-color);
}
main {
    margin: 0 auto;
}
footer {
    display: flex;
    position: relative;
    align-items: center;
    width: 100%;
    background-color: var(--primary-color);
    color: var(--text-light-color);
    padding: 20px 0;
}
footer > p {
    font-size: 1rem;
    width: fit-content;
    margin: 0 auto;
}
.social-icons {
    display: flex;
    position: absolute;
    right: 0;
    justify-content: space-evenly;
    width: 10%;
}
.social-icons a {
    width: 30px;
    height: 30px;
}
.social-icons svg {
    color: var(--text-light-color);
    display: inline-block;
    width: 30px;
    height: 30px;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
    html {
        font-weight: 500;
    }
}
@media screen and (max-width: 1280px) {
    nav {
        width: 100vw;
        height: 60px;
        padding: 0;
    }
    nav img {
        width: 40px;
        height: 40px;
    }
    nav a {
        margin: 0 0 0 15px;
    }
    nav a:hover {
        background: 0;
        color: var(--text-light-color);
    }
    nav a {
        font-size: 1em;
        font-weight: 500;
        color: var(--text-light-color);
        background: 0;
    }
    nav ul {
        width: 90%;
    }
    footer {
        width: 100vw;
        padding: 10px 0;
        justify-content: space-evenly;
    }
    footer > p {
        font-size: 0.95em;
        text-align: start;
        line-height: 1.2em;
        width: 40%;
        margin: 0;
    }
    .social-icons {
        position: static;
        width: 40%;
    }
}