@import url("./src/root.css");

body {
    display: flex;
    margin-block: auto;
    justify-content: center;
    align-items: center;
    height: 85vh;

    background-color: var(--color-black);
    color: var(--color-white);
    font-size: 16px;
}

.container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8rem;
    height: 300px;
}

.title {
    font-family: var(--police2);
    font-size: 4rem;
}

.vertical__separator {
    height: 100%;
    width: 0.1rem;
    background-color: rgba(255, 255, 255, 0.1);
}

.btn__google {
    background-color: var(--color-main);
    color: var(--color-white);
    font-size: 1rem;
}
