html, body {
    height: 100%;
    font-family: "Jura", "Helvetica Neue", sans-serif;
    overflow:hidden;
}

body {
    position: relative;
    background: #000;
    margin: 0;
}

.flex-container {
    height: 100%;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
}

img{
    width: 80vw;
}

p {
    max-width: 70vw;
}

a {
    font-weight: bold;
    text-decoration: none;
    background: linear-gradient(to right, #17859a, #f86b70);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    transition: 1s;
}
a:hover {
    background: linear-gradient(to left, #17859a, #f86b70);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.circle{
    position: absolute;
    left: -250px;
    top: 250px;
    z-index: -1;
    width: 500px;
    height: 500px;
    border-radius: 30%;
    background-image: linear-gradient(45deg, #1f8499, #36c6f0);
    opacity: 0.25;
    filter: blur(100px);
}

.circle.two{
    left: auto;
    top: -250px;
    right: -250px;
    bottom: auto;
    background-image: linear-gradient(45deg, #ff6a6e, #6549d5);
}

#tsparticles {
    position: fixed;
    margin: 0;
    padding: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* 
  ##Device = Desktops
  ##Screen = 1281px to higher resolution desktops
*/

@media (min-width: 1281px) {
  
    img{
        width: 25vw;
        padding-bottom: 3vh;
    }

    p {
        max-width: 30vw;
    }
  
}