* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

body {
    min-height: 100vh;
    background: #000;
    display: flex;
    flex-direction: column;
}

main {
    flex-grow: 1;
}

button {
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
}

.container {
    max-width: 1200px;
    padding: 10px 15px;
    flex-grow: 1;
    display: flex;
    justify-content: center;
}