@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", Arial;
}

body {
    display: flex;
    -webkit-background: linear-gradient(178.1deg, rgb(60, 55, 106) 8.5%, rgb(23, 20, 69) 82.4%);
    background: linear-gradient(178.1deg, rgb(60, 55, 106) 8.5%, rgb(23, 20, 69) 82.4%);
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
}

#preloader {
    -webkit-background: transparent;
    background: transparent;
    -webkit-border: 2px solid rgba(255,255,255,.2);
    border: 2px solid rgba(255, 255, 255, .2);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
    -webkit-box-shadow: 0 0 10px rgba(0,0,0,.2);
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
    color: #fff;
    height: 10000vh;
    width: 10000vh;
    position: fixed;
    z-index: 100;
}

#preloader h4 {
    text-align: center;
    position: absolute;
    top: 50%;
    bottom: 50%;
    width: 100%;
    font-size: 30px;
}

.container {
    width: 600px;
    -webkit-background: transparent;
    background: transparent;
    -webkit-border: 2px solid rgba(255,255,255,.2);
    border: 2px solid rgba(255, 255, 255, .2);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    -webkit-box-shadow: 0 0 10px rgba(0,0,0,.2);
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
    color: #fff;
    border-radius: 10px;
    padding: 30px 40px;
}

.container h1 {
    color: white;
    text-align: center;
    cursor: default;
}

.container h4 {
    color: white;
    text-align: center;
    font-size: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.container p {
    color: white;
    text-align: center;
}

.cf-link {
    color: white;
    text-decoration: underline;
}
