* {
    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;
}

/* home  */

/* 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;
}

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

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

/* main */
.first_photo_home {
    background-image: url("img/photo_header.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    font-family: 'Press Start 2P';
    color: white;
    font-size: 40px;
    height: 600px;
    display: flex;
    align-items: center;
    padding: 35px;
    box-sizing: border-box;
    background-attachment: fixed;
}


.greeting {
    height: 100px;
    background-color: #5b84cd;
    color: white;
    font-family: "Nunito Sans";
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.text_in_greeting {
    font-weight: 900;
}

.tech_on_home {
    background-color: rgb(30, 30, 30);
    color: white;
    font-family: "Nunito Sans";
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 100px;
}

.text_in_satellites {
    font-weight: 900;
    color: #5b84cd;
}

.image_satellites {
    background-image: url("img/main_satellite.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: 600px;
}

.stations {
    background-color: rgb(30, 30, 30);
    color: white;
    font-family: "Nunito Sans";
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 100px;
}

.image_station {
    background-image: url("img/main_station.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: 600px;
}

.image_rocket {
    background-image: url("img/main_rocket.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    height: 600px;
}

.image_planetoid {
    background-image: url("img/main_planetoid.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: 600px;
}

/* 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;
    }

    .first_photo_home p {
        text-shadow: 0px 0px 15px blue;
    }

    .image_rocket {
        background-position: center;
    }

    .image_satellites {
        background-position: right 35% bottom 45%;
    }
}

@media (max-width: 768px) {
    .menu2 {
        display: none;
    }

    footer {
        padding: 10px 0;
    }

    .image_planetoid {
        background-position: right 65% bottom 45%;
    }

    .image_station {
        background-position: right 65% bottom 45%;
    }
}

@media (max-width: 591px) {
    .first_photo_home {
        font-size: 30px;
    }

    .greeting {
        padding: 20px;
    }
}

@media (max-width: 385px) {
    .name {
        display: none;
    }

    .first_photo_home {
        font-size: 25px;
    }
}