html, body {
    margin: 0;
    position: relative;

    background-color: lightslategray;
}

html {
    min-width: 200px;
    width: 70%;
    height: -webkit-fill-available;
    padding: 5% 15%;
}

body {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

hr {
    color: #211e39;
}

::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {

    background: gainsboro; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
    background-color: #b0abd4; 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background-color: #7f76b9; 
}


.list {
    display: flex;
    flex-direction: column;
    align-self: center;
    min-width: 200px;
    width: 40%;
}

ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    list-style-type: none;
    padding-inline-start: 0px;
}

a {
    font-weight: bold;
    text-decoration: none;
}

.letter-link {
    color: darkslateblue;
}

.letter-link:hover {
    color: #2c2751;
}


.window-div {
    position: absolute;
    left: 10%;
    width: 80%;
    top: 10%;
    height: 80%;
    z-index: 1;

    display: flex;
    align-self: center;
    flex-direction: column;

    background-color: gainsboro;
    visibility: collapse;

    border: 2px solid darkslateblue;
    border-radius: 5px;
}

#window-div-imhere {
    height: auto;
}

.window-header {
    background-color: darkslateblue;
    display: flex;
    flex-direction: row;
    justify-content: left;
    width: 100%;
}

.window-close-btn {
    background-color: rgba(0, 0, 0, 0);
    border-color: rgba(0, 0, 0, 0);
    color: whitesmoke;
    font-weight: bolder;
}

.window-close-btn:hover {
    color: #c0c0c0;
}

.window-content {
    margin: 10px;
    margin-right: 0px;
    overflow-x: auto;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.imhere-question {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px;
}

.window-content-imhere {
    overflow-x: auto;
    white-space: pre-wrap;
    word-wrap: break-word;
}


h1 {
    color: #211e39;
    font-size: 20px;
    text-align: center;
}

h2 {
    color: #211e39;
    font-size: 16px;
    text-align: center;
}

.acceptance {
    display: flex;
    flex-direction: column;
    align-self: center;
    min-width: 200px;
    width: 30%;
    border: 3px dashed #695fa7;
    border-radius: 10px;
    padding: 20px;
}

.acceptance-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.acceptance-text {
    text-align: center;
    overflow-x: auto;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.imhere-btn {
    color: #c0c0c0;
    background-color: #504598;
    border: none;
    padding: 5px 10px;
    margin: 15px;
}

.imhere-btn:hover {
    background-color: #3b336b;
}

.imhere-input {
    width: 100%;
    padding: 0px 10px;
    display: flex;
    justify-content: center;
}

input[type="text"] {
    width: 80%;
    text-align: center;
}