/***GLOBAL***/

* {
    margin: 0;
    padding: 0
}

body {
    background: url(images/hero.jpg) no-repeat center center fixed;
    background-size: cover;
    line-height: 1.6;
    text-align: center;
    font-family: Chalkboard;
    color: #fff;
    width: 100%;
}

h1 {
    font-size: 4rem;
    margin: 1rem;
}

h2 {
    font-size: 3rem
}

h3 {
    font-size: 2rem
}

p {
    padding: 10px
}

.text,
h1,
h2,
h3 {
    margin: 1rem;
    text-transform: uppercase
}


/*** STYLE ***/

.text {
    color: #f2b705
}

#logo {
    margin-top: 10px
}

#container {
    width: 100%;
    height: 100%;
    overflow-y: scroll
}


/*** To swich between tablets and desktops ***/

@media (max-width:780px) {
    .navbar-desktop {
        display: none!important;
    }
    .modal-content p {
        font-size: 20px
    }
}

@media (min-width:780px) {
    .navbar-mobile {
        display: none!important;
    }
}

.navbar-mobile {
    width: 100%;
    font-size: 30px;
}

.navbar-mobile a {
    text-decoration: none;
    color: #fff
}

.navbar-mobile li {
    padding: 20px;
    border: 1px solid #181c1f;
    border-radius: 5px;
    background: #ffffffab
}

.navbar-desktop {
    font-size: 1.5rem;
    position: fixed;
    top: 0;
    z-index: 1;
    display: flex;
    width: 100%;
    height: 60px;
    background-color: #fff
}

.navbar-desktop ul {
    display: flex;
    list-style: none;
    width: 100%;
    justify-content: space-around
}

.navbar-desktop ul li {
    margin: 8px
}

.navbar-desktop ul li a {
    text-decoration: none;
    text-transform: uppercase;
    color: #181c1f;
}

.navbar-desktop ul li a:hover {
    color: #f2b705
}

#logo {
    margin-top: 13px
}


/*** PLANETS STYLES ***/

.planetSection img {
    margin: 0 50px;
    cursor: pointer;
    transition: .1s ease
}

.planetSection img:hover {
    transform: scale(1.1, 1.1)
}

.planetSection {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    margin-right: 10px
}

section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    scroll-snap-align: center;
    padding-top: 60px
}

section p {
    color: #fff;
    font-size: 2rem;
    text-transform: uppercase;
    line-height: 3.5rem
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 100px;
    width: 100%;
    height: 100%;
    top: 0;
    background-color: rgba(0, 0, 0, .4)
}

.modal-content {
    background-color: #0fbf2a;
    margin: auto;
    font-size: 2rem;
    text-transform: uppercase;
    border: 20px solid #107329;
    width: 60%;
    height: 60vh;
    color: #fff;
    padding-top: 5%;
}

.close {
    color: #fff;
    float: unset;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    justify-content: flex-end;
    cursor: pointer;
}

.close:hover {
    color: #181c1f;
    text-decoration: none;
    cursor: pointer
}

.close:focus {
    color: #181c1f;
    text-decoration: none;
    cursor: pointer
}

.contact-section {
    padding: 30px 0 50px 0;
    background: url(../images/hero.jpg);
    text-align: center;
    color: #fff;
    font-size: 25px;
    margin-bottom: 20px;
    text-transform: uppercase
}

form {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    max-width: 800px;
    text-align: left;
    padding: 10px;
    margin-top: 70px;
}

input[name=email],
input[name=name],
input[name=subject] {
    width: 100%;
    height: 40px;
    background: 0 0;
    border: 0;
    border-bottom: solid 1px grey;
    outline-style: none
}

textarea {
    width: 100%;
    background: 0 0;
    border: 0;
    border-bottom: solid 1px grey;
    outline-style: none
}

.send-button {
    margin: 0;
    float: right;
    transition: all .3;
    width: 100px;
    height: 100px;
    text-transform: uppercase;
    outline-style: none;
    border: 0;
    color: #fff;
    font-size: initial
}

.send-button {
    margin: 0;
    background-color: #f2b705;
    float: right;
    transition: all .3;
    width: 100px;
    height: 100px;
    text-transform: uppercase;
    outline-style: none;
    border: 0;
    color: #fff;
    font-size: initial
}

.see-all {
    text-transform: uppercase;
    font-size: 1.3rem;
    margin: 22px;
    color: #f2b705;
    padding: 0.3rem;
    cursor: pointer;
}

.frames {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1.2rem;
    color: #181c1f;
    padding: 0.5rem;
}

.frames iframe {
    margin: 0 20px
}

.loader {
    border-top: 16px solid #00f;
    border-right: 16px solid #ff0;
    border-bottom: 16px solid red;
    border-left: 16px solid pink;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
    margin: auto
}

@keyframes spin {
    0% {
        transform: rotate(0)
    }
    100% {
        transform: rotate(360deg)
    }
}

#animation {
    height: 500px;
    animation: launch 6s linear infinite;
}

#animation img {
    transform: rotate(-73deg);
    width: 300px
}

@keyframes launch {
    0% {
        margin: 0 0 0 100%;
    }
    50% {
        margin: 0 100% 0 0;
    }
    100% {
        transform: rotate(180deg);
    }
}

footer {
    padding: 20px 0;
    background-color: #f2b705;
    width: 100%;
    font-size: 15px;
    text-decoration: none;
    text-align: center;
    color: black;
    cursor: pointer;
}

footer a {
    text-transform: uppercase;
    color: black;
}