@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap');
* {
    font-family: 'Lexend', sans-serif;
    color: var(--text-color);
    overflow-x: hidden;
}
html, body {
    height: 100%;
    width: 100%;
    margin: 0;
}
h1 {
    margin-top: 100px;
}
body {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #070707;
    color: white;
    flex-direction: column;
    gap: 20px;
}
button {
    cursor: pointer;
    height: 140px;
    width: 50px;
    border: none;
    border-radius: 50px;
}
#container {
    height: auto;
    width: auto;
    min-height: 100px;
    min-width: 100px;
    background-color: #101010;
    padding: 20px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#container p {
    font-size: 20px;
    text-align: center;
}
#blue_p {
    color: #1b67dc;
}
#red_p {
    color: #e63535;
}
#button_container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 120px;
    height: auto;
    width: auto;
    padding: 40px;
}
#red_pill {
    background: #e63535;
    rotate: 45deg;
}
#blue_pill {
    background: #1b67dc;
    rotate: -32deg;
}
#footer {
    position: relative;
    height: 120px;
    width: 100%;
    background: #0e0e0e;
    gap: 10px;
    margin-top: auto;
    text-align: center;
}
#footer p {
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 30px;
}