@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;800;900&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background-color: #191B1F;
}

header {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    max-width: 85%;
    margin: 0 auto;
    background-color: #191B1F;
    padding: 1em 0;
    z-index: 1;
}

.header {
    max-width: 85%;
    padding: 1em 0;
}

.btn-custom {
    background-color: #D10568;
    border: 2px solid #D10568;
    color: #FFF;
    border-radius: 12px !important;
}

.btn-custom:hover,
.btn-custom:active,
.btn-custom:focus {
    background-color: #D10568 !important;
    border: 2px solid #D10568 !important;
    color: #FFF !important;
    border-radius: 12px !important;
}

h1 {
    color: #FFF;
    font-size: 4em;
    font-weight: 900;
}

#hero {
    min-height: 100vh;
    background-image: url(./images/glimmer_bg.svg);
    background-size: cover;
    display: flex;
    align-items: center;
}

#hero p {
    color: #FFF;
    opacity: 0.7;
    font-size: 1.3em;
    font-weight: 600;
}
.box {
    color: #FFF;
    padding: 3em;
    text-align: center;
}
.box h2 {
    font-size: 3em;
    font-weight: 700;
}
.img {
    width: 95%;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.19);
}
.section-3 {
    color: #FFF;   
}
.column-2 {
    padding-top: 2em;
    text-align: right;
}
.section-3 h2 {
    font-size: 2.5em;
}
.section-3 p {
    margin-top: 2em;
    color: rgb(136, 141, 155);
    font-size: 1.2em;
}
@media only screen and (max-width:991px) {
    .column-2 {
        text-align: center;
    }
    footer div {
        flex-wrap: wrap !important;
    }
    h1 {
        font-size: 3em;
    }
    #hero p {
        font-size: 1em;
    }
}
@media only screen and (max-width:500px) {
    h1 {
        font-size: 2em;
    }
}