* {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    box-sizing: border-box;
}

body {
    background-image: url(./img/bg.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.body {
    width: 100vw;
    height: 100vh;
    backdrop-filter: blur(200px);
    background: rgba(200, 200, 200, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.37);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

h1 {
    margin: 250px auto 20px auto;
    display: block;
    text-align: center;
    font-size: 50px;
    color: white;
    text-shadow: 0 4px 5px rgba(0, 0, 0, 0.7);
}

h3 {
    display: block;
    text-align: center;
    font-size: 30px;
    margin-bottom: 20px;
    color: white;
    text-shadow: 0 4px 5px rgba(0, 0, 0, 0.7);
}

a {
    display: block;
    text-align: center;
    font-size: 18px;
    color: white;
    text-shadow: 0 4px 5px rgba(0, 0, 0, 0.7);
}