* {
    box-sizing: border-box;
}

body {
    background-color: #121317;
    color: #fff;
    margin: 12px;
    margin-bottom: 0;
    min-height: 100vh;
    font-family: 'Nunito', sans-serif;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 3rem;
}

@media (max-width: 480px) {
    body {
        min-height: 100vh;
        justify-content: space-between;
        gap: 1rem;
    }
}

@media (max-width: 1080px) and (min-width: 481px) {
    body {
        min-height: 100vh;
        justify-content: space-between;
    }
}