* {
    padding: 0;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background-color: rgb(0, 0, 0);
    height: 100%;
    max-height: 100%;
    box-sizing: border-box;
}

html {
    height: 100%;
    max-height: 100%;
}

.logo {
    background-color: transparent;
    width: 100%;
    height: 40%;
    background-image: url("logo.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    padding-bottom: 30px;
}

.wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    max-height: 100%;
    width: 100%;
    box-sizing: border-box;

    background-color: transparent;
    background-image: radial-gradient(circle, transparent 5%, #000000bd 0%);
    background-size: 22px 22px;
    overflow: hidden;
    position: relative;
}

.mid {
    width: 80%;
    height: 50%;
    max-height: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    position: absolute;
    z-index: 99;
    box-sizing: border-box;
}
.message {
    color: white;
    font-size: xx-large;
    font-weight: bold;
    text-align: center;
}

.link {
    color: rgba(238, 248, 255, 0.865);
    font-size: large;
    padding-top: 10px;
    text-align: center;
}

#dot-light {
    position: absolute;
    background: radial-gradient(circle, #5979a1 0%, #00000000 50%);
    width: 80vw;
    aspect-ratio: 1;
    min-width: 1100px;
    transition: transform 0.1s ease;
    pointer-events: none;
    z-index: -99;
}

a {
    color: #3ca5fb !important;
}
