@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --background-orange: #FD2903;
    --background-dark-grey: #1e1e1e;
}

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

body {
    padding: 0;
    background-color: rgb(0, 0, 0);
}

header {
    margin: 0em auto;
    width: min(auto, 100%);
    background-color: var(--background-orange);
    padding: 1px;
    border-bottom-left-radius: 1em;
    border-bottom-right-radius: 1em;
}

nav {
    margin: 0.5em auto 0.5em auto;
    margin-right: 15px;
    padding: 1%;
    width: min(auto, 100%);
}

nav a {
    font-size: 1.85rem;
    font-family: Archivo;
    font-weight: 600;
    text-decoration: none;
    color: #000000;
}

nav ul {
    display: flex;
    align-items: center;
    list-style-type: none;
    gap: 2em;
}

nav li:first-child {
    margin-right: 5px;
}











section {
    margin: 1.5em auto;
    width: min(1600px, 100%);
    background-color: var(--background-dark-grey);
    padding: 0px;
    border-radius: 10px;
}

.featured-section {
    margin: 1.5em auto;
    width: min(1600px, 100%);
    background-color: #1ec073;
    padding: 0px;
    border-radius: 10px;
}

.featured-banner {
    background-image: url('coin.webp');
    background-position: center;
    background-size: cover;
    width: min(1600px, 100%);
    height: 500px;
    text-align: center;
    align-content: center;
}

.banner {
    background-image: url('banner_lun.png');
    background-position: center;
    background-size: cover;
    height: 200px;
    width: min(1600px, 100%);
    text-align: center;
    align-content: center;
}

.promoted-section {
    background-color: rgb(29, 29, 29);
}



.featured-h1 {
    color:#2f7138;
    font-family: Archivo;
}

.featured-h2 {
    color:#000000
}

.featured-text-container p {
    margin: .15em 0 .8em 0;
    font-size: 30px;
    font-family: Archivo;
    color: rgb(0, 0, 0);
}

.text-container p {
    margin: .15em 0 .8em 0;
    font: 2.55em;
    font-size: 29px;
    font-family: Archivo;
    color: rgb(255, 255, 255);
}


h1, h2, h3 {
    font-size: 40px;
    font-family: Archivo;
    color: white;
}







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

.flex-container {
    padding: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-wrap: wrap;
    gap: 1em;
}

.text-container {
    flex: 0 1 35em
}

h1 {
    font-size: 5.5rem;
}



.cta-button {
    display: inline-block;
    text-decoration: none;
    font-family: Archivo;
    font-weight: 500;
    font-size: 1.2rem;
    color: rgb(0, 0, 0);
    background-color: #21e895;
    padding: .55em;
    margin-right: .5em;
    border-radius: .5em;
}

.cta-button:hover{
    display: inline-block;
    text-decoration: none;
    font-family: Archivo;
    color: rgb(0, 0, 0);
    background-color: #57ff84;
    padding: .55em;
    margin-right: .5em;
    border-radius: .5em;
}

section {
    gap: 65em;
}


section p {
    margin-top: 1em;
    font-size: 1.25rem;
}

@media(max-width: 640px){
    nav li {
        display: none;
    }
    
    nav li:first-child,
    nav li:last-child {
        display: block;
    }
}

footer {
    margin-top: 25px;
    padding-bottom: 3.5em;
    text-align: center;
    color: #21e895;
}

footer a {
    margin: .5em;
    text-decoration: none;
}