* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
}

:root {
    --primary-color: #100F2E;
    --color-bluer-light: #00A3FF;
    --secund-color: #FFDE59;
    --red-color: #e01010;
    --text-color: #fff;
    --text-light: #D1D1D1;
    --text-black: #222;
}

body {
    overflow-x: hidden;
}

header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    color: var(--text-color);
    background: transparent;
    z-index: 1000;
    padding: 15px;
}

header nav {
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    gap: 10px;
    cursor: pointer;
    color: var(--text-color);
    text-shadow: -1px -1px 1px rgba(255,255,255,.1), 1px 1px 1px rgba(0,0,0,.5);
}

header nav img {
    position: relative;
    width: 240px;
}

header nav h2 {
    position: relative;
    font-size: 16px;
    display: flex;
    text-align: center;
}

.btn-CTA {
    position: relative;
    padding: 10px 15px;
    background: var(--secund-color);
    border-radius: 5px;
    color: var(--text-black);
    font-size: 16px;
    margin-top: 15px;
    transition: .5s;
    font-weight: 800;
    cursor: pointer;
}

.btn-CTA:hover {
    position: relative;
    transform: translateY(-5px) scale(1.1);
    transition: .5s;
}

section {
    position: relative;
    width: 100%;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    header {
        justify-content: center;
    }

    header nav {
        justify-content: center;
    }

    header nav img {
        position: relative;
        width: 200px;
    }
    
    
    .btn-CTA {
        font-size: 18px;
    }

    header nav h2 {
        display: none;
    }
}