@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=SUSE+Mono:ital,wght@0,100..800;1,100..800&display=swap');

* {
    box-sizing: border-box;
    font-family: "Open Sans", sans-serif;
}

body {
    background-color: black;
    color: white;
    display: flex;
    flex-direction: column;
    height: 100vh;
}

a {
    color: #fff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
    cursor: pointer;
}

.main {
    margin: 1rem;
    border-radius: 1rem;
    padding: 1rem;
    border: 1px solid rgb(255, 255, 255);
}

body::before {
    content: '';
    background-repeat: no-repeat;
    background-size: contain;
    width: 240vw;
    height: 90vh;
    display: inline-block;
    position: fixed;
    top: -38rem;
    left: -29rem;
    z-index: -2;
    transform: rotate(143deg);
    background: #2d6f75;
    background: linear-gradient(15deg, rgba(239, 45, 253, 1) 40%, rgb(27, 236, 255) 100%);
    filter: blur(3rem);
    opacity: 0.7;
}

body::after {
    content: '';
    background-repeat: no-repeat;
    background-size: contain;
    width: 240vw;
    height: 90vh;
    display: inline-block;
    position: fixed;
    bottom: -24rem;
    z-index: -2;
    transform: rotate(145deg);
    background: #2d6f75;
    background: linear-gradient(3deg, rgb(29, 188, 202) 0%, rgba(239, 45, 253, 1) 35%);
    filter: blur(3rem);
    opacity: 0.7;
}

@media only screen and (min-width: 768px) {
    body {
        padding: 2rem;
    }

    body::before, 
    body::after{
        opacity: 0.3;
    }

    .main {
        max-width: 1024px;
        margin: 1rem auto;

    }
}