* {
    margin: 0;
    padding: 0;
}

nav {
    display: flex;
    justify-content: space-between;
    background: #000;
    color: white;
}

nav button {
    background-color: black;
    color: white;
    border: none;
    padding: 10px;
}

nav button:hover{
    color: purple;
    cursor: pointer;
}

nav h2 {
    margin: auto 20px;
}

.container {
    width: 50%;
    margin: 10vh auto;
}

.banner {
    text-align: center;
}

button {
    background-color: purple;
    color: white;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    margin: 2px;
    width: 215px;
}








/* :root {
    background-color: rgb(29,26,26)
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-size: 62.5%;
    font-family: "Nova Square" , cursive;
}

.time-header h1 {
    display: flex;
    justify-content: space-between;
    color: purple;
    font-size: 4rem;
}

h1 {
    font-size: 5.4rem;
    color: #fff;
    margin-bottom: 5rem;
}

h2 {
    font-size: 4.2rem;
    margin-bottom: 4rem;
}

.container {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 80rem;
    margin: 0 auto;
    padding: 2rem;
}

.flex-columm {
    display: flex;
    flex-direction: column;
}

.flex-center {
    justify-content: center;
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.text-center {
    text-align: center;
}

.hidden {
    display: none;
}

.btn {
    font-size: 2.4rem;
    padding: 2rem 0;
    width: 30rem;
    text-align: center;
    margin-bottom: 1rem;
    text-decoration: none;
    color: rgb(28,26,26);
    background: linear-gradient(90deg, rgb(18,93,285) 0%, rgb(0,10,255) 100%);
    border-radius: 4px;
}

.btn:hover {
    cursor: pointer;
    box-shadow: 0 0.4rem 1.4rem 0 rgba(8,114,244,0.6);
    transition: transform 150ms;
    transform: scale(1.03);
}

.btn[disabled]:hover {
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
} */