body, html {
    min-height: 100vh;
    min-width: 100vw;
    padding: 0;
    margin: 0;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-title {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: inline-block;
    position: absolute;
    color: white;
    font-size: 5vw;
    letter-spacing: 10vw;
    text-indent: 10vw;
    margin: 0px;
    z-index: 1;
    font-family: 'Raleway', sans-serif;
    opacity: 70%;
    filter: blur(1px);
    user-select: none;
}

.under-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: inline-block;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-color: black;
    opacity: 0.5;
    filter: blur(1px);
}

@media screen and (max-width: 600px) {
   .main-title {
    top: 25%;
    opacity: 80%;
    filter: blur(0px);
    font-size: 20vw;
    user-select: none;
    letter-spacing: 1vw;
    text-indent: 1vw;
    font-weight: 100px;
   }

   #buttons-wrapper {
    width: min-content;
    height: min-content;
   }
}