* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body {
    height: 100vh;
    background:
        radial-gradient(circle at 20% 20%, rgba(32, 56, 140, 0.55), transparent 55%),
        radial-gradient(circle at 80% 80%, rgba(18, 32, 84, 0.45), transparent 60%),
        linear-gradient(180deg, #05071A 0%, #03051A 35%, #020311 100%);
    color: white;
    font-family: "Montserrat", sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;

    animation: fadeIn 1.2s ease forwards;
    opacity:0;
}

@keyframes fadeIn {
    from {opacity:0; transform: translateY(20px);}
    to {opacity:1; transform: translateY(0);}
}

.container {
    text-align: center;
    animation: slideUp 1.2s ease forwards .2s;
    opacity:0;
}

@keyframes slideUp {
    from {opacity:0; transform: translateY(25px);}
    to {opacity:1; transform: translateY(0);}
}

.title {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
}

.icon {
    width: 150px;
    border-radius: 50%;
}

.name {
    font-size: 10.0rem;
    font-weight: 700;
}

.btn-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
    text-decoration: none;
    color: inherit;
}

.box {
    min-width: 90px;
    padding: 0.6rem 1rem;
    border-radius: 0.9rem;
    border: 1px solid rgba(148, 163, 184, 0.6);
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(10px);
    font-size: 0.9rem;
    font-weight: 500;

}








