@import url('https://fonts.googleapis.com/css2?family=STIX+Two+Text:ital,wght@0,400..700;1,400..700&display=swap');
* {
    margin: 0;
    padding: 0;
    font-family: "STIX Two Text", serif;
    color: white;
}
body, html {
    height: 100%;
    width: 100%;
    background-color: #574134;
}
body {
    display: flex;
    flex-direction: column;
    align-items: center;
}
h1 {
    margin-top: 10px;
}
#input_container {
    margin-top: 30px;
}
input {
    outline: none;
    border: none;
    border-radius: 15px;
    padding: 10px;
    background-color: #332921;
}
#pendulum_container {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#pendulum_root {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ffffff;
}
#pendulum_radius {
    width: 6px;
    height: 100px;
    background-color: #ffffff;
    transform-origin: top;
    position: relative;
}
#pendulum_weight {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #ffffff;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
}

