* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    -webkit-user-select: none;
    user-select: none;
}

.main {
    font-family: Arial, Helvetica, sans-serif;
    height: 100vh;
    background-color: rgb(18, 2, 54);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.square {
    height: 210px;
    width: 370px;
    border-radius: 10px;
    border: thin solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(170deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.123));
    backdrop-filter: blur(15px);
    box-shadow: 0px 1px 24px rgba(0, 0, 0, 0.1);
}

p {
    padding-top: 25%;
    letter-spacing: 3px;
}

a, p {
    text-align: center;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    
}

a {
    height: 40px;
    width: 150px;
    padding-top: 10px;
    border: thin solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    background: linear-gradient(-60deg, rgba(255, 255, 255, 0.140), rgba(255, 255, 255, 0.123));
    backdrop-filter: blur(15px);
    margin-top: 20px;
    text-decoration: none;
    display: block;
}

a:hover, a:active, .square:hover {
    background: linear-gradient(-60deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2));
}