:root {
    --main-color: #5378ff;
    --main-font: "Inter";
}

body {
    margin: 0px;
    font-family: var(--main-font);
    height: 100vh;
}

button {
    font-family:  var(--main-font);
    width: fit-content;
}
button#random {
    background: var(--main-color);
    border: none;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: 500;
    transition: .2s;
    position: absolute;
    bottom: 20px;
    width: 90%;
    height: 50px;
    font-size: 18px;
}

.header {
    background: var(--main-color);
    padding: 15px;
    display: flex;
    justify-content: center;
}
.header .title {
    color: white;
    font-weight: 500;
    margin: 0px;
}

.container {
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding-left: 50px;
    padding-right: 50px;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
}
#output {
    line-height: 25px;
    max-height: 600px;
    overflow: auto;
}
#output .title {
    margin: 0px;
    font-weight: 700;
}