body {
    font-family: 'Roboto', sans-serif;
    width: 100%;
    height: 100%;
}

#canvas-basic {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -10;
}

.main {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

img {
    width: 450px;
    margin-bottom: 10px;
}

.text__die {
    color: #fff;
    font-size: 14px;
    font-weight: 100;
    margin-top: -14px;
    margin-bottom: 30px;
}

.text {
    color: #fff;
    font-size: 28px;
    font-weight: 100;
    margin: 0px;
    margin-bottom: 18px;
}

.whatsup {
    display: block;
    color: #fff;
    margin-top: 30px;
}

.blogs {
    color: #fff;
    font-size: 16px;
    font-weight: 100;
    margin-top: 22px;
    margin-bottom: 18px;
}

.blogs-link {
    display: block;
    color: #fff;
    margin-bottom: 18px;
    font-size: 18px;
}

.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 900;
    display: none;
}

.popup-content {
    padding: 40px 65px;
    box-sizing: border-box;
    background-color: rgba(255, 255, 255, 0.85);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 6px 10px 6px rgba(0, 0, 0, 0.25);
}

h3 {
    text-transform: uppercase;
    font-weight: 500;
}
.popup_text {
    line-height: 24px;
}
.sign {
    text-align: right;
    font-style: italic;
    margin-top: 40px;
}

.read-us__link {
    text-decoration: none;
    padding: 14px 30px;
    border: 1px solid #fff; 
    font-size: 26px;
    color: #fff;
    font-weight: 200;
    margin: 40px;
    display: inline-block;
    transition: color 500ms linear;
}

.read-us__link:hover {
    color: #0078d7;
    background: #fff;
    transition: background-color 1000ms linear;
    transition: color 500ms linear;
}

.read-us__link-xbox {
    display: block;
    margin: 28px auto 0;
}

.copyright {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translate(-50%, -0%);
    color: #fff;
    font-weight: 300;
    font-size: 16px;
}
.copyright a, .copyright a:visited {
    color: #fff;
}

@media (max-width: 768px) {
    .main {
        width: 100%;
    }
    .text {
        font-size: 24px;
    }
    img {
        width: 80%;
    }
    .popup-content {
        width: 100%;
        height: 100%;
        padding: 6px 14px;
    }
    .popup_text {
        line-height: 18px;
    }
    .sign {
        margin-top: 18px;
    }
    .read-us__link {
        font-size: 16px;
        width: 280px;
    }
    .copyright {
        bottom: 8px;
        font-size: 14px;
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 400px) {
    .text {
        font-size: 16px;
    }
    img {
        width: 60%;
    }
    .text__die {
        margin-top: -8px;
    }
    .whatsup {
        margin-top: 0;
    }
}