*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Barlow", serif;
    font-weight: 500;
    font-style: normal;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100dvh;
    background: url('../images/start.png') no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
    z-index: -1;
}

.wrapper {
    width: 420px;
    background: rgba(0, 123, 183, 0.3);
    border: 2px solid rgba(255,255,255,.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 10px rgba(0, 185, 231, .2);
    color: rgba(220, 220, 220);
    align-items: center;
    border-radius: 10px;
    padding: 30px 40px;
    position: relative;
    z-index: 1;
}

.wrapper h2 {
    font-family: "Russo One", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 36px;
    text-align: center;
}

.wrapper p {
    text-align: center;
    width: 100%;
    margin-top: 5%;
    margin-bottom: 5%;
    font-size: 17px;
}

.wrapper .btn {
    width: 80%;
    margin-left: 10%;
    margin-right: 10%;
    height: 45px;
    background: rgba(220, 220, 220);
    border: none;
    outline: none;
    border-radius: 40px;
    cursor: pointer;
    font-size: 18px;
    color: rgba(41, 40, 40);
    font-weight: 600;
    transition: 0.3s;
}

.wrapper .btn:hover {
    box-shadow: 0 0 10px rgba(255, 70, 24, .2);
    scale: 1.01;
}