@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

html,body {
    background-color: black;
    font-family: "Archivo Black", sans-serif;
}

footer {
    color: rgb(56, 59, 71);
    font-family: "Poppins", sans-serif;
    font-weight: 400;
}

.container {
    display: flex;
    gap: 20px;
}

.column1 {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
}

.column2 {
    flex: 2;
    min-width: 0;
}

.column2 h1 {
    color: white;
    max-width: 60%;
    font-weight: 400;
    font-size: 64px;
}

.logo {
    position: fixed;
    top:75px;
}

.buttons-section {
    display: flex;
    max-width: 40%;
    flex-direction: column;
}

#signup-label {
    color: white;
    font-size: 24px;
}

#signup-button {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 18px;
    background-color: white;
    border: none;
    border-radius: 90px;
    padding: 6px 36px;
}

#signup-button:hover {
    background-color: rgb(181, 181, 181);
    transition: background-color 200ms;
}

.separator {
    display: flex;
    align-items: center;
    text-align: center;
    color: #888;
    font-family: "Poppins", sans-serif;
    margin-top: 20px;
}

.separator::before {
    content: "";
    flex: 1;
    border-bottom: 1px solid #444;
}

.separator::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #444;
}

.separator::before {
    margin-right: 10px;
}

.separator::after {
    margin-left: 10px;
}

#login-label {
    color: white;
    font-size: 20px;
}

#login-button {
    color: white;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 18px;
    background-color: black;
    border: 1px solid rgb(187, 187, 187);
    border-radius: 90px;
    padding: 6px 36px;
}

#login-button:hover {
    background-color: rgb(27, 27, 27);
    border-color: rgb(221, 221, 221);
    transition: all 200ms;
}