@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: 'Lato', sans-serif;
}
html {
    height: 100%;
}
body {
    height: 100%;
    background: #000;
}

.root {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
}


.container {
    color: white;
    font-size: 1.4rem;
    width: 13em;
}

.container b {
    font-size: 1.5rem;
}

.container {
    text-align: center;
}

.container img {
    width: 9em;
    margin: 5px;
}

.btn {
    background: #5E01E8;
    color: white;
    border: none;
    margin: 30px 0px;
    padding: 12px 24px;
    border-radius: 5px;
    transition: background 100ms ease-in-out;
}

.btn:hover {
    cursor: pointer;
    background: #8035f0;
}