* {
    padding: 0;
    margin: 0;
    user-select: none;
}

*, *::after, *::before {
	-webkit-user-select: none;
	-webkit-user-drag: none;
	-webkit-app-region: no-drag;
	cursor: default;
}

body {
    width: 100vw;
    height: 100vh;
    color: #fff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}


.content {
    width: 100%;
    height: 100%;
    background-color: #1d1d1d;
    display: flex;
    justify-content: center;
    /* flex-direction: column; */
    align-items: center;
}

.logo {
    width: 128px;
    height: 128px;
}

.logo > img {
    width: 100%;
    height: 100%;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.title {
    font-weight: 600;
    font-size: 72px;
}

.description {
    font-size: 24px;
}