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

:root {
    font-family: 'Arimo-regular', sans-serif;
    font-size: 20px;
    --bg-color: linear-gradient(#000 24%, #2d2d46);
    --text-color-h1: #fafafa;
    --text-color-p: #cac7c7;
    --color-text: #fafafa;
    --color-1: #c0c0c0;
    --color-2: #f9185f;
    --color-3: #12c2e9;
}

.flex-col-ctr {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

body {
    background: var(--bg-color);
}

header{
    padding: 50px 10px;
    & img {
        margin-bottom: 20px;
    }
    & p {
       font-size: clamp(.6rem, 1.5vw, .8rem); 
    }
}

section {
    padding: 20px;
    margin: 30px auto;
}

h1 {
    color: var(--text-color-h1);
    font-size: clamp(1.8rem, 1.5vw, 2.5rem);
    padding: 10px 20px;
    text-align: center;
}

h2 {
    color: var(--text-color-h1);
    font-size: clamp(1.2rem, 1vw, 1.8rem);
    padding: 10px 20px;
    text-align: center;
}

h2 span {
    color: var(--color-3);
}

p {
    color: var(--text-color-p);
    font-size: clamp(.8rem, .8vw, 1.2rem);
}

p span {
    color: var(--color-text);
    font-weight: bold;
}

.link__item {
    margin-top: 2rem;
    color: var(--color-text);
    letter-spacing: 1px;
    text-decoration: none;
    font-weight: bold;
    position: relative;
}

.link__item::after {
    position: absolute;
    content: "";
    background-color: var(--color-2);
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 3px;
    transition: all 0.3s ease;
}

.link__item:hover::after {
    width: 100%;
}

footer p {
    color: #fff;
    text-align: center;
    text-wrap: balance;;
    margin-bottom: 30px;
}

@media (min-width: 1000px) {
    html {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    body {
        max-width: 800px;     
    }
}