*{
    cursor: url('cursor/no_tap.png'), auto;
}
body {
    margin: 0;
}
a:hover {
	cursor: url('cursor/tap.png'), auto;
}
i:hover {
    cursor: url('cursor/tap.png'), auto;
}
input:hover {
    cursor: url('cursor/tap.png'), auto;
}
textarea:hover {
    cursor: url('cursor/tap.png'), auto;
}
button:hover {
    cursor: url('cursor/tap.png'), auto;
}
/* header */
header {
    background-color: rgb(30, 30, 30);
    display: flex;
    align-items: center;
    padding: 5px;
}

.logo {
    width: 80px;
}

.name {
    font-family: 'Press Start 2P';
    color: white;
    font-size: 17px;
    margin: 0 0 0 10px;
}
/* menu */
.menu a {
    color: white;
    font-family: 'Press Start 2P';
    text-decoration: none;
    font-size: 12px;
    margin: 0 10px;
}

.mini_menu {
    color: white;
    font-size: 25px;
    display: none;
}

.home {
    transition: all 0.3s ease-in;
}

.home:hover {
    font-weight: 900;
}

.satellite {
    transition: all 0.3s ease-in;
}

.satellite:hover {
    font-weight: 900;
}

.station {
    transition: all 0.3s ease-in;
}

.station:hover {
    font-weight: 900;
}

.rocket {
    transition: all 0.3s ease-in;
}

.rocket:hover {
    font-weight: 900;
}

.planetwalker {
    transition: all 0.3s ease-in;
}

.planetwalker:hover {
    font-weight: 900;
}

.questions {
    transition: all 0.3s ease-in;
    font-weight: 500;
}

.questions:hover {
    font-weight: 900;
}

.menu {
    width: 100%;
    display: flex;
    justify-content: right;
    margin: 0 30px 0 0;
}

/* main */
.background {
    height: 700px;
    background-image: url("img/background_stars.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;

    vertical-align:bottom;
}

.window {
    background-color: #5b84cd;
    height: 200px;
    width: 520px;
    display: flex;
    padding: 10px;
    box-sizing: border-box;
    align-items: center;
    border-radius: 5px;

    margin: auto;
    justify-content: center;
}

input {
    border-radius: 5px;
    border-color: white;
    font-family: "Nunito Sans";
    font-weight: 600;
}
input[type=email] {
    height: 20px;
    padding: 5px;
    box-sizing: border-box;
    border-color: white;
}
textarea {
    border-radius: 5px;
    padding: 5px;
    box-sizing: border-box;
    margin-bottom: 10px;
    border-color: white;
    font-family: "Nunito Sans";
    font-weight: 600;
}
.roboto {
    display: flex;
    align-items: center;
}
.roboto p {
    margin: 0px 10px;
    color: rgb(30, 30, 30);
    font-family: "Nunito Sans";
    font-weight: 700;
    font-size: 13px;
}
.email {
    margin-bottom: 15px;
    border-color: white;
}
button {
    border-radius: 5px;
    background-color: rgb(30, 30, 30);
    color: white;
    border-color: rgb(30, 30, 30);
    font-family: "Nunito Sans";
    font-weight: 700;
    width: 100px;
    height: 30px;
    font-size: 13px;
    margin: 0 0 0 15px;
}

.que {
    font-size: 200px;
    color: white;
    text-align: center;
    padding-top: 20px;
}
/* footer  */
footer {
    background-color: #5b84cd;
    padding: 20px 0px 5px 0px;
    justify-content: center;
    align-items: center;
}

.menu2 {
    width: 100%;
    display: flex;
    justify-content:center;
    align-items: center;
    margin: 0 30px 0 0;
}
.menu2 a {
    color: white;
    text-decoration: none;
    font-family: 'Press Start 2P';
    font-size: 11px;
    margin: 0 10px;
    text-align: center;
}

.rights_footer {
    color: white;
    font-family: "Nunito Sans";
    font-weight: 700;
    font-size: 12px;
    text-align: center;
}

.social_networks {
    display: flex;
    justify-content:center;
    align-items: center;
    font-size: 22px;
    margin-top: 20px;
}

.social_networks a {
    color: rgb(30, 30, 30);
    margin-left: 10px;
    text-align: center;
}

@media (max-width: 1200px) {
    .menu {
        display: none;
    }
    .mini_menu {
        display: block;
        position: absolute;
        right: 50px;
    }
}
@media (max-width: 768px) {
    .menu2 {
        display: none;
    }
    footer {
        padding: 10px 0;
    }
}
@media (max-width: 565px) {
    .window {
        display: block;
        width: 360px;
        height: 230px;
    }
    button {
        text-align: center;
        margin: auto;
    }
    .roboto {
        margin-bottom: 10px;
    }
}
@media (max-width: 385px) {
    .window {
        display: block;
        width: 100%;
        height: 230px;
    }
    textarea {
        width: 100%;
    }
    .name {
        display: none;
    }
}