@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Indie+Flower&display=swap');

body{
    background: #FF8008;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #FFC837, #FF8008);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #FFC837, #FF8008); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    font-family: "Nunito", cursive;
    padding: 50px 0 0;
    margin: 0;
    overflow: hidden;
    user-select: none;
}
.container{
    margin: 0 auto;
    width: 1000px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 100vh;
    max-width: 100%;
}
.logo_bx1{
    width: 400px;
    user-select: none;
    display: block;
    margin: 0 auto;
    max-width: 100%;
    user-select: none;
    pointer-events: none;
}
.container h2{
    color: #fff;
    text-align: center;
    margin: 30px 0 15px;
    font-size: 48px;
    font-weight: 300;
}
.container a{
    color: #fff;
    text-align: center;
    font-size: 20px;
    font-weight: 300;
    text-decoration: none;
}
.pattern1{
    position: fixed;
    left: 0;
    top: 0;
    object-fit: cover;
    z-index: -1;
    width: 1000px;
}
.pattern2{
    position: fixed;
    left: 1000px;
    top: 0;
    object-fit: cover;
    z-index: -1;
    width: 1000px;
}

@media (max-height: 800px) {
    .logo_bx1{
        width: 300px;
    }
    .container h2{
        font-size: 36px;
    }
    .pattern1{
        width: 800px;
    }
    .pattern2{
        left: 800px;
    }
}
@media (max-width: 768px) {
    .pattern1 {
        width: 550px;
    }
    .pattern2{
        left: 550px;
        width: 550px;
    }
    .logo_bx1{
        width: 200px;
    }
    .container h2{
        font-size: 24px;
    }
}