body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #25274e;
    margin: 0;
    padding: 0;
    overflow: hidden;
    position: relative;
}

section {
    text-align: center;
    z-index: 2;
    position: relative;
}

.profile-pic {
    border-radius: 2%;
    max-width: 9rem;
    margin-bottom: 0rem;
    width: 10rem;
    object-fit: cover;
    border: solid 4px aliceblue;
}
.link-items a {
    
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    margin-bottom: 0px;
    background-color: white;
    border: 3px solid;
    border-radius: 5px;
    text-decoration: none;
    color: #333;
}

.link-items a:hover {
    background-color: #f0f0f0;
}

.link-items i {
    margin-right: 0.5rem;
}
 
h2.title.is-4{
    color: white;
    margin-bottom: 6px;
}


h3.title.is-5{
    color: white;

    margin-bottom: 11px;
}

.title.is-6 {
    margin-bottom: 3rem;
    color: white;
}

@keyframes animate {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }
    100% {
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }
}

.background {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
    background: #25274e;
    overflow: hidden;
    z-index: 1;
}

.background li {
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    animation: animate 10s linear infinite;
}


.background li:nth-child(1) { left: 87%; width: 134px; height: 134px; bottom: -134px; animation-delay: 1s; }
.background li:nth-child(2) { left: 78%; width: 100px; height: 50px; bottom: -20px; animation-delay: 4s; }
.background li:nth-child(3) { left: 70%; width: 40px; height: 70px; bottom: -40px; animation-delay: 6s; }
.background li:nth-child(4) { left: 40%; width: 60px; height: 60px; bottom: -60px; animation-delay: 8s; }
.background li:nth-child(5) { left: 65%; width: 50px; height: 50px; bottom: -50px; animation-delay: 10s; }
.background li:nth-child(6) { left: 75%; width: 110px; height: 60px; bottom: -110px; animation-delay: 12s; }
.background li:nth-child(7) { left: 35%; width: 30px; height: 60px; bottom: -30px; animation-delay: 14s; }
.background li:nth-child(8) { left: 50%; width: 90px; height: 90px; bottom: -90px; animation-delay: 16s; }
.background li:nth-child(9) { left: 20%; width: 60px; height: 60px; bottom: -60px; animation-delay: 18s; }
.background li:nth-child(10) { left: 80%; width: 40px; height: 90px; bottom: -40px; animation-delay: 20s; }

