@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, sans-serifA;
}

body {
    display: flex;
    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;
}

.container {
    width: 300px;
    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);
    transform: translate3d(0,0,0);
    -webkit-transform: translate3d(0,0,0);
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
    -webkit-box-shadow: 0 0 10px rgba(0,0,0,.2);
    color: #fff;
    border-radius: 10px;
    padding: 30px 40px;
}

.container a {
    color: white;
    font-size: 25px;
    text-decoration: none;
}

.container a:hover {
    text-decoration: underline;
}

.click-me {
    margin-left: 10%;
}

.footer a {
    text-decoration: none;
    position: fixed;
    right: 20px;
    bottom: 5px;
    color: white;
    cursor: pointer;
}

.footer a:hover {
    text-decoration: underline;
}
