/* Reset & Global */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    height: 100%;
    width: 100%;
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(to right, #38bdf8, #8b5cf6);
    overflow-x: hidden;
}

main {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}