:root {
    --darkgray: #23272a;
    --gray: #2c2f33;
    --lightgray: #272a2e;
    --yellow: #fee75c;
    --purple: #b473f5;
    --pink: #e292aa;
    --gradient: linear-gradient(45deg, var(--purple), var(--pink));
    --gradient2: linear-gradient(45deg, var(--pink), var(--purple));
}

* {
    overflow-x: hidden;
    padding: 0;
    margin: 0;
    font-family: 'Lato', sans-serif;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

main {
    height: 110vh;
    width: 100%;
    background-color: var(--gray);
    background-size: cover;
    background-position: center;
}

article h2 {
    color: white;
    font-size: 75px;
    width: 350px;
    margin: 30px auto;
    text-align: center;
}

article h2:hover {
    background-image: var(--gradient);
    background-clip: text;
    color: transparent;
    transition: 0.4s;
}

article {
    text-align: center;
    height: auto;
    width: 55vw;
    padding: 20px 35px;
    background-color: var(--lightgray);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    text-align: center;
    margin: 15px;
    margin-left: auto;
    margin-right: auto;
}

article h2 {
    width: 100%;
    text-decoration: none;
    font-size: 23px;
    display: inline;
    background-image: var(--gradient);
    background-clip: text;
    color: transparent;
    margin-top: 15px;
}

article p,
article ul li {
    color: white;
    font-size: 16px;
    line-height: 27px;
    margin-bottom: 15px;
    position: relative;
}

/* 

    Footer

*/

footer {
    position: relative;
    width: 100%;
    height: 200px;
    background-color: var(--darkgray);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

footer ul li a {
    text-decoration: none;
    color: white;
    font-size: 18px;
}

footer h3 {
    color: white;
    font-size: 23px;
}
