* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
}
.section {
    display: flex;
    gap: 2rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #030c30 0%, #000882 100%);
    width: 100vw;
    height: 100vh;
}

h2, p {
    color: #ffffff;
    text-align: center  ;
}

h2 {
    font-weight: 500;
    font-size: 2.75rem;
    margin: 0;
}

a {
    text-decoration: none;
}

p {
    font-size: 1.5rem;
}

ul {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

li{
    list-style: none;
}