* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    --color-nav: #6c0e6c;
    --color-link: #ff5774;
    --color-footer: #767676;
    --color-btn: #451ad1;
}

nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.4em;
    background-color: var(--color-nav);
    margin: auto;
}

nav a {
    padding: 1.2em;
    color: white;
    font-size: 1.35rem;
    text-decoration: none;
}

.nav-title {
    font-size: 1.9rem;
    padding: 0.5em;
    margin-right: 1em;
}

nav a:hover {
    text-decoration: underline;
}

.burger {
    color: transparent;
    background-color: transparent;
    border: none;
    display: none;
    margin-right: 2.5em;
    cursor: pointer;
}

.burger svg {
    color: white;
    width: 3em;
    height: 3em;
}

.side-menu {
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    transition: 0.3s ease-in-out;
    position: fixed;
    transform: translateX(100%);
    background-color: var(--color-nav);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.side-menu-open {
    transform: translateX(0);
}

.close-side-menu {
    background-color: transparent;
    border: none;
    color: white;
    cursor: pointer;
    padding: 1em;
}

.close-side-menu svg {
    width: 1.6em;
    height: 1.6em;
}

h1 {
    font-size: 7rem;
    text-align: center;
    margin: 0.6em 0;
    font-family: 'Roboto', sanf-serif;
}

h2 {
    font-size: 4.5rem;
    text-align: center;
    margin: 1em 0;
    font-family: 'Roboto', sans-serif;
}

h3 {
    font-size: 2.1rem;
    margin-top: 1.6em;
}

.center {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 15px;
}

.center-sm {
    max-width: 750px;
    margin: 0 auto;
    padding: 0 15px;
}

.pasme-columns {
    display: flex;
    column-gap: 5em;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
}

.pasme-columns div {
    padding-left: 1.5em;
}

.hero-columns {
    display: flex;
    column-gap: 2.5em;
    row-gap: 1em;
    justify-content: center;
    align-content: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 15px;
    padding-bottom: 1em;
    font-weight: bold;
    font-size: 2.3rem;
}

.hero-columns a {
    display: inline-block;
    cursor: pointer;
    background-color: var(--color-btn);
    color: white;
    text-decoration: none;
    border-radius: 18px;
    padding: 0.1em 0.4em;
    margin-top: 0.5em;
    margin-left: 1em;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

p {
    font-size: 1.15rem;
    margin-bottom: 1em;
    text-align: justify;
}

li {
    font-size: 1.15rem;
}

.info li {
    margin-bottom: 1em;
    overflow-x: hidden;
    list-style-position: inside;
}

.info li a {
    color: var(--color-link);
}

.next-btn {
    border: 1px solid black;
    border-radius: 10px;
    float: right;
    color: var(--color-btn);
    text-decoration: none;
    font-size: 1.15rem;
    padding: 0.3em;
    margin-top: 1em;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.thx {
    text-align: center;
    margin-top: 2em;
    font-size: 1.4rem;
}

footer {
    margin-top: 7em;
    margin-bottom: 1em;
    color: var(--color-footer);
    text-align: center;
}

@media only screen and (max-width:1200px) {

    nav > a:not(.nav-title) {
        display: none;
    }

    nav {
        justify-content: space-between;
    }

    .nav-title {
        margin-left: 1em;
        margin-top: 0.5em;
        margin-bottom: 0.5em;
    }

    .burger {
        display: inline-block;
    }

    .hero-columns {
        flex-wrap: wrap;
        text-align: center;
    }

    .hero-columns a {
        margin-left: 0;
    }

}

@media only screen and (max-width:550px) {

    .pasme-columns {
        justify-content: left;
    }

    h1 {
        font-size: 5rem;
    }

    h2 {
        font-size: 3.5rem;
    }

    .hero-columns div {
        overflow-x: hidden;
    }

}
