.pagetitle {
    font-family: "Lexend", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-size: 40px;
    margin-top: 10px;
    margin-bottom: 0px;
    padding-bottom: 0px;
    cursor: default;
    user-select: none;
}

.pageheading {
    font-family: "Lexend", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-size: x-large;
    padding: 0px;
    margin: 10px;
    cursor: default;
    user-select: none;
}

.textfont {
    font-family: "Comfortaa", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    cursor: default;
    overflow-wrap:anywhere;
    white-space:inherit;
    font-size: 20px;
    user-select: none;
}

.pi{
    font-family: "Comfortaa", sans-serif;
    user-select: text;

    white-space: pre-wrap;       /* Preserves spaces/newlines but wraps */
    overflow-wrap: break-word;  /* Breaks long words if necessary [2, 3] */
        
    max-height: 90vh;           /* Limits height to viewport */

    padding:5px;
}

.input {
    font-family: "Comfortaa", sans-serif;
    text-align: center;
    width: 500px;
    padding: 5px;
    border-radius: 20px;
    border-style: solid;
    font-size: 17px;
    border:3px,solid,black;
    box-shadow: 5px 5px 5px lightgray;
}

.input:focus {
    outline: none;
    border-color:gray;
    box-shadow: none;
}

button {
    font-family: "Comfortaa", sans-serif;
    text-align: center;
    width:500px;
    padding:5px;
    border-radius: 20px;
    margin-top:10px;
    font-size: 17px;
    background-color: rgb(226, 226, 226);
    border: solid;
    box-shadow: 5px 5px 5px lightgray;
    cursor: pointer;
    border-color: black;
}

button:active {
    background-color: lightgray;
    border-color:gray;
    box-shadow: none;
}

.source {
    position:absolute;
    top: 20px;
    right: 20px;
    font-family: "Comfortaa", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    cursor: pointer;
    overflow-wrap:anywhere;
    white-space:inherit;
    font-size: 15px;
}

body{
    overflow-x: hidden;
}