@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400&display=swap');

body {
    background-color: #3F014C;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' %3E%3Cdefs%3E%3ClinearGradient id='a' x1='0' x2='0' y1='0' y2='1' gradientTransform='rotate(280,0.5,0.5)'%3E%3Cstop offset='0' stop-color='%23650960'/%3E%3Cstop offset='1' stop-color='%2314011A'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpattern id='b' width='30' height='30' patternUnits='userSpaceOnUse'%3E%3Ccircle fill='%233F014C' cx='15' cy='15' r='15'/%3E%3C/pattern%3E%3Crect width='100%25' height='100%25' fill='url(%23a)'/%3E%3Crect width='100%25' height='100%25' fill='url(%23b)' fill-opacity='0.11'/%3E%3C/svg%3E");
    background-attachment: fixed;
    font-family: Poppins, sans-serif;
    color: white;
}
main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    align-items: center;
    min-height: 100vh;

    header {
        h1, h2 {
            color: #fff9;
            text-align: center;
            margin: 0;
        }
        h1 {
            font-size: 4rem;
            font-weight: 400;
        }
        h2 {
            font-size: 1.4rem;
            font-weight: 300;
        }
    }

    menu {
        display: flex;
        flex-direction: column;
        padding: 0;
        gap: 1rem;

        a:is(:link, :visited) {
            background-color: #fff9;
            border-radius: 50px;
            display: flex;
            color: #0009;
            gap: 1rem;
            align-items: center;
            padding: 1rem;
            text-decoration: none;
            transition: all 0.5s ease-in;
            width: 280px;
            
            i {
                background-color: #001117;
                border-radius: 20px;
                color: whitesmoke;
                font-style: normal;
                display: flex;
                align-items: center;
                justify-content: center;
                transition: all 0.9s ease-in;
                height: 40px;
                width: 40px;
            }
        }

        a:is(:hover)  {
            transform: translate(-15px);
            background-color: whitesmoke;
            
        }

        a:is(:hover) i {
            transform: scale(1.4) rotateY(720deg);
        }

        a.disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }
    }
}