body {
    margin: 0;
    font-family: 'Minecraft Rus'; 
    font-weight: normal; 
    font-style: normal;

    font-size: 15px;
    line-height: 1.6;
    color: #333;
    margin-top: 60px;
    background: linear-gradient(to right, #1A2980, #26D0CE);
}

*,
*:before,
*:after {
    box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
}

/* HEader */
.header__title {
    margin-top: 200px;
}

/* Heading */
.heading {
    font-size: 35px;
    color: #fff;
    margin-left: 60px;
}

/* Subtitle */
.subtitle {
    font-size: 20px;
    color: #fff;
    margin-left: 60px;
    background: rgba(0, 0, 0,.5);
    width: 400px;
    height: 40px;
    padding-left: 12px;
    padding-top: 5px;
    padding-bottom: 8px;

}

/* Download */
.download {
    color: #fff;
    border: 4px solid #fff;
    padding-left: 65px;
    padding-right: 65px;
    padding-bottom: 30px;
    padding-top: 30px;
    text-decoration: none;
    font-size: 30px;
    margin-left: 860px;
}

.download:hover {
    color: #fff;
    border: 8px solid #fff;
    padding-left: 65px;
    padding-right: 65px;
    padding-bottom: 30px;
    padding-top: 30px;
    text-decoration: none;
    font-size: 30px;
    margin-left: 860px;
    font-weight: bold;
}


/* Help  */
.help {
    color: #fff;
    border: 4px solid #fff;
    padding-left: 25px;
    padding-right: 25px;
    padding-bottom: 10px;
    padding-top: 10px;
    text-decoration: none;
    font-size: 20px;
    margin-left: 60px;
}

.help:hover {
    color: #fff;
    border: 8px solid #fff;
    padding-left: 25px;
    padding-right: 25px;
    padding-bottom: 10px;
    padding-top: 10px;
    text-decoration: none;
    font-size: 20px;
    margin-left: 60px;
    font-weight: bold;
}
/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Intro */
.intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 110vh;
    background: #eb3734;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    -webkit-background-size: cover;
    background-size: cover;
}

.intro__inner {
    width: 100%;
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
}

/* Header */
.header {
    width: 100%;
    padding-top: 3px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    position: fixed;
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    margin-left: 200px;
    text-decoration: none;

}


/* Nav */
.nav {
    font-size: 12px;
    text-transform: uppercase;
    text-decoration: none;
    position: fixed;
    margin: 20px;
    margin-left: 440px;
}

.nav__link {
    display: inline-block;
    vertical-align: top;
    margin: 0 15px;
    position: relative;
    color: #fff;
    text-decoration: none;
    transition: color .6s linear;
}

.nav__link:after {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    background-color: #e6e6e6;
    opacity: 0;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1;
    transition: opacity .6s linear;
}

.nav__link:hover {
    color: #e6e6e6;
    text-decoration: none;
}

.nav__link:hover:after,
.nav__link.active:after {
    opacity: 1;
}

.nav__link.active {
    color: #fff;
}


/* NetWork */
.network_1 {
    margin: 5px;
    text-align: left;
    margin-top: 105px;
    position: fixed;
    margin-left: 160px;

}

.network_2 {
    margin: 5px;
    text-align: left;
    margin-top: 105px;
    position: fixed;
    margin-left: 200px;

}

.network_3 {
    margin: 5px;
    text-align: left;
    margin-top: 105px;
    position: fixed;
    margin-left: 250px;
}

/* Page3 */
.news {
    background: rgba(0, 0, 0,.6);
    color: #fff;
    font-size: 14px;
    border-radius: 30px;
    border: 1px solid black;
    width: 400px;
    height: 300px; 
}

/* Download */
.bg__down {
    background: white;
}


/* The alert message box */
.alert {
    padding: 20px;
    background-color: #f44336; /* Red */
    color: white;
    margin-bottom: 15px;
}

/* The close button */
.closebtn {
    margin-left: 15px;
    color: white;
    font-weight: bold;
    float: right;
    font-size: 22px;
    line-height: 20px;
    cursor: pointer;
    transition: 0.3s;
}

/* When moving the mouse over the close button */
.closebtn:hover {
    color: black;
}

