body {
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(3, 0, 0);
    overflow: hidden;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
}

.card {
    position: relative;
    background: rgba(255, 157, 157, 0.1);
    padding: 30px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    text-align: center;
    color: white;
}

.title-icon {
    width: 30px;
    height: auto;
    margin-right: 1px;
    vertical-align: middle;
    border-radius: 50%;
}

.card p, .card .p2 {
    margin-bottom: -20px;
}

.card .p2, .card .p3 {
    margin-bottom: -5px;
}

.card h2 {
    font-style: italic;
    font-weight: bold;
    font-family: 'Winky Sans', sans-serif;
}

.card p{
    font-weight: bold;
    font-family: 'Winky Sans', sans-serif;
}

.card p2{
    font-weight: bold;
    font-family: 'Winky Sans', sans-serif;
}

.bottom-icons {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 30px;
    z-index: 100;
}

.bottomicon {
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.bottomicon i {
    font-size: 30px;
    color: white;
    transition: color 0.3s ease;
}

.one:hover i {
    color: #7289da;
}

.two:hover i {
    color: #9da000;
}

.three:hover i {
    color: #ff0000;
}

.bottomicon:hover i {
    filter: brightness(1.3);
}

.bottomicon:hover {
    transform: translateY(-5px);
}

.tooltip1,
.tooltip2,
.tooltip3 {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    font-family: 'Winky Sans', sans-serif;
}

.bottomicon:hover .tooltip1,
.bottomicon:hover .tooltip2,
.bottomicon:hover .tooltip3 {
    opacity: 1;
    visibility: visible;
    bottom: 50px;
}