.half {
    width: 40%;
    min-width: 720px;
    /* height: 20vh; */
}

.alignbottom {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: sticky;
    height: 25vh;
    top: 0;
    background: inherit;
}

#header {
    color: rgb(255, 255, 244);
    transition: opacity 0.4s;
    line-height: 150%;
    font-weight: normal;
}

input {
    font-family: 'Fira Code', monospace;
    font-size: 2rem;
    border: none;
    border-bottom: solid 2px lightgray;
    background-color: transparent;
    color: rgb(232, 209, 255);
    padding: 1rem 1rem 0.5rem 1rem;
    box-sizing: border-box;
    width: 100%;
}

input:focus {
    outline-width: 0;
    border-bottom: solid 2px rgb(232, 209, 255);
    background-color: rgba(232, 209, 255, 0.05);
}

.hidden {
    opacity: 0;
}

#form {
    position: relative;
    margin: 0 0 1rem 0;
}

#home {
    font-size: 2rem;
    position: absolute;
    top: 1rem;
    right: 0;
    padding: 0 2rem;
    user-select: none;
    background-color: transparent;
    color: white;
    border: none;
    opacity: 0.5;
    transition: opacity 0.4s;
}

#home:hover {
    opacity: 1;
}
