* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #242424;
    color: aliceblue;
    width: 100%;
    padding: 30px 40px;
}

h1 {
    text-align: center;
    font-size: 2.5rem;
}

h2 {
    margin-top: 30px;
    font-size: 2rem;
}

.endpoints-container {
    display: flex;
    flex-direction: column;
    margin-top: 50px;
    gap: 30px;
}

.endpoint {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

img {
    width: 40%
}

ul {
    margin-top: 15px;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}