form {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 14px;
    background: linear-gradient(45deg, black, var(--main-color));
    color: white;
    font-weight: lighter;
}

.brand-logo {
    width: min(230px, 55vw);
    filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.45));
}

.quick-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.quick-links .main-btn {
    margin-top: 0;
    font-size: 16px;
}

.connect-command {
    font-size: 14px;
    opacity: 0.9;
    background: rgba(0, 0, 0, 0.35);
    padding: 6px 10px;
    border-radius: 6px;
}

.main-btn {
    margin-top: 60px;
    font-size: 20px;
}

.main-btn svg {
    width: 20px;
}

h1 {
    font-size: 80px;
    text-transform: uppercase;
    border-radius: 10px;
    overflow: hidden;
    transition: .5s;
}

h1:hover {
    background: var(--main-color);
}

h1 a {
    background: none;
    text-decoration: none;
    transition: .5s;
}

h1 a:hover,
h1 a:focus-visible {
    background: var(--main-color);
    color: white;
}

h1:hover {
    background: var(--main-color);
    color: white;
}

h3 {
    text-align: center;
}

@media (width <= 700px) {
    form {
        padding: 20px;
    }
    h1 {
        font-size: 40px;
    }
    h2 {
        font-size: 18px;
    }
    h3 {
        font-size: 15px;
    }
    .quick-links {
        width: 100%;
    }
    .quick-links .main-btn {
        width: 100%;
    }
}