* {
    margin: 0;
    padding: 0;
}

main {
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(/img/underconstruction.jpeg);
    background-position: top;
    background-size: cover;
    font-family: "Inter", sans-serif;
}

.block {
    background-color: rgba(255, 255, 255, 0.55);
    width: 40vw;
    height: 60vh;
    border-radius: 20px;
}

.logo {
    height: 60%;
    padding-top: 10px;
    padding-bottom: 7px;
}
.logo img {
    height: 100%;
}

.text h1 {
    font-size: 42px;
}

.text p {
    font-size: 22px;
    margin: 10px;
}

@media (max-width: 1169px) {
    .block  {
        width: 100%;
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        border-radius: 0;
    }

    .logo {
        height: 50%;
    }
}

/* Designed by Kevin Sweet. */