/* ============================
Global
============================ */
html{
    font-family: 'Poppins', sans-serif;
}

.body {
    justify-content: center;
    background: #272727;
}

.header{
    display: block;
    flex-direction: column;
    width: 100vw;
    background: #d6d6d7;
    justify-content: space-between;
    align-items: center;
}

.logo{
    align-items: center;
    color: #272727;
}

.logo svg{
    display:block; 
    width: 50px; 
    height: 50px;
    padding: 1em;
    fill:  #272727;
}

main {
    margin-top: 2em;
}

.theme-wrapper {
    position: relative;
    height: 100vh;
    margin: auto;
    align-items: center;
    overflow: hidden;
}

a {
    text-decoration: none;
}

a, a:active, a:focus {
    outline: none;
 }

.gn{
    flex-basis: 50%;
    justify-content: space-around;
}

.gn li{
    padding: 1em;
}
.gn li a{
    color: #272727;
}

.footer{
    background: #d6d6d7;
    position: absolute;
    width: 100vw;
    bottom: 0;
}

.footer p{
    padding: 1em;
    font-size: 0.75em;
}

/* ==============================
helpers
============================= */

.is-flex {
    display: flex;
}

.column {
    flex-direction: column;
}

/* ==============================
Btn
============================= */
.btn {
    display: block;
    background: #8a2be2;
    color: #fff;
    border-radius: 1em;
    padding: 1em;
    text-transform: capitalize;
    margin: 2em auto;
    text-align: center;
}

/* ==============================
main
============================= */
.text-wrapper {
    text-align: center;
    width: 80vw;
}
.heading {
    font-size: 26vw;
    color: #8a2be2;
}

.message {
    line-height: 1.75;
    margin-top: 1.5em;
    color: #00ffff;
    text-transform: capitalize;
}

/* ==============================
spirals
============================= */
.spiral-one {
    width: 245vw;
    margin: 0 auto;
    fill: red;
    transform-origin: center;
    animation: rotate 10s linear forwards infinite;
}

.spiral-wrapper {
    position: absolute;
    transform-origin: center;
    animation: move 6s ease-in-out infinite;
}

/* ==============================
animations
============================= */
@keyframes rotate {
    0%{
        transform: rotate(0);
        fill: #00ffff;
    }
    75%{
        fill: #8a2be2;
    }
    100%{
        transform: rotate(-360deg);
        fill: #00ffff;
    }
}
@keyframes move {
    0%{
        width: 300vw;
    }
    50%{
        width: 80vw;
    }
    100%{
        width: 300vw;
    }
}

/* ==============================
==============================
==============================
==============================
==============================
       QUERIES
============================= 
============================= 
============================= 
============================= 
============================= */

@media(min-width: 576px){
    .text-wrapper{
        width: 60vw;
    }
    .message {
        font-size: 1.75em;
        margin-top: 0.5em;
    }
    @keyframes move {
        0%{
            width: 300vw;
        }
        50%{
            width: 60vw;
        }
        100%{
            width: 300vw;
        }
    }
}
@media(min-width: 768px){
    .header{
        flex-direction: row;
    }
    .text-wrapper{
        display: flex;
        width: 85vw;
        margin: 4em auto;
    }
    .heading{
        flex-basis: 50%;
        align-self: center;
        font-size: 15vw;
    }
    .message {
        flex-basis: 50%;
        font-size: 3vw;
    }
    .btn {
        width: 35vw;
    }
    @keyframes move {
        0%{
            width: 300vw;
        }
        50%{
            width: 85vw;
        }
        100%{
            width: 300vw;
        }
    }
}
@media(min-width: 992px){
    .text-wrapper{
        display: flex;
        width: 85vw;
        height: 235px;
        margin-bottom: 2em;
    }
    .text-wrapper .heading {
        order: 2;
        align-self: flex-end;
    }
    .text-wrapper .message {
        order: 1;
        margin-top: 1.5em;
    }
    .btn{
        font-size: 1.5em;
        margin: -2em 0 2em;
    }
}
@media(min-width: 1200px){
    .text-wrapper{
        margin: 0;
    }
    .text-wrapper .heading {
        align-self: center;
    }
    .btn{
        margin: 1em 4em 3em auto;
        width: 25vw;
        transition: 0.25s ease;
    }
    .btn:hover{
        background: #00ffff;
        color: #8a2be2;
    }
    .gn li a:hover{
        color: #8a2be2;
    }
}