@import url(https://db.onlinewebfonts.com/c/33ca94f43a53fc634323a6fe191ffd64?family=trend-sans-w00-four); 

@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.gradient1 {  /*pink-blue gradiet*/  
    background: linear-gradient(
        45deg,
        #ff4fd8,
        #ff74f3,
        #ae7bff,
        #4a6cff,
        #0f2dff 
    );
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
}

.gradient2 { /*red-purple gradient*/
    background: linear-gradient(
        45deg,
        #ff2b2b,
        #ff4f6e,
        #d43b9c,
        #a033d8,
        #6c2bff
    );
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
}

.gradient3 { /*neon pink-blue*/
    background: linear-gradient(
        45deg,
        #ff4fd8,
        #d46eff,
        #2c3ca8,
        #081b4b
    );
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
}

.gradient4 { /* neon red-purple*/
    background: linear-gradient(
        45deg,
        #ff2a38,
        #ff3f7a,
        #c43bb3,
        #6a1fb8,
        #1a093c
    );
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
}

.gradient5 { /* neon-pulse red-purple*/
    background: linear-gradient(
        45deg,
        #ff003c,
        #ff2679,
        #c82ed8,
        #5a19a3,
        #12062f
    );
    background-size: 400% 400%;
    animation: gradient 10s ease infinite;
}

body {
    margin: 0;
    padding: 0;
    height: 100vh;
    /*display: flex;
    justify-content: top;
    align-items: top;*/
    text-align: center;
}

.main-body {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.header-gradient {
    border-radius: 0px 0px 10px 10px;
    margin: 0;
    padding: 0;
    height: 100px;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-inner-gradient {
    border-radius: 0px 0px 10px 10px;
    margin-bottom: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 95px;
    width: 99vw;
    background: black;
}

.header-gradient-box {
    margin: 10px;
    border-radius: 10px;
    height: 80px;
    width: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-inner-gradient-box {
    border-radius: 10px;
    height: 70px;
    width: 190px;
    background: black;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-text {
    color: #4b0082;
    font-family: 'trend-sans-w00-four', sans-serif;
    font-size: 40px;
}

.gradient-body {
    margin: 30px;
    border-radius: 10px;
    height: 200px;
    width: 90vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

.inner-gradient-body {
    border-radius: 10px;
    height: 190px;
    width: calc(90vw - 10px);
    background: black;
}

.link-underline {
  background: linear-gradient(currentColor 0 0) 
    bottom left/
    var(--underline-width, 0%) 0.1em
    no-repeat;
  color: #4b0082;
  display: inline-block;
  text-decoration: none;
  transition: background-size 0.5s;
}

.link-underline:hover {
  --underline-width: 100%;
}

.body-text {
    font-family: 'trend-sans-w00-four', sans-serif;
    color: #4b0082;    
}
