* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #000;
    font-family: 'Poppins', sans-serif;
}

section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

ul {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: rgb(7, 108, 155);
}

li {
    margin-top: 15px;
    padding: 6px 20px;
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    background-color: rgba(255, 255, 255, 0.87);
    border-radius: 15px;
    border: solid 2px #15971073;
    box-shadow: 5px 5px 15px rgb(18, 194, 3);
}

i {
    font-size: 50px;
    color: #080808;
    padding: 8px;
    transition: transform 0.5s ease;
}

h2 {
    font-size: 2em;
    color: #000000;
}

a {
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    padding: 10px 20px;
    color: #000000;
    text-decoration: none;
    font-size: 1.1em;
    text-transform: uppercase;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
    border-radius: 15px;
    background-color: rgba(255, 255, 255, 0.404);
}

a:hover {
    color: #03f3e7;
    background-color: #37382d98;
    transition: all 0.5s ease-in-out;
}

.footer {}