* {
    box-sizing: border-box;
}

html {
    height: 100vh;
}

body {
    height: 100vh;
    padding: 15px;
}

main {
    display: flex;
    flex-direction: column;
    max-width: 100vw;
}

.parent {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr;
    grid-template-areas: ". . .";
    justify-content: center;
    align-content: center;
}

.left {
    position: relative;
    height: 100vh;
}

.right {
    position: relative;
    height: 100vh;
}
.top {
    display: flex;
}

a {
    margin: 4px;
    color: black;
}

a:hover {
    color: rgb(171, 0, 255);
}

.button {
    position: relative;
    top: 56px;
    left: 5px;
}

iframe {
    border: 3px solid rgb(0, 0, 0);
    background-color: white;
    position: relative;
}

#title {
    position: relative;
    top: 28px;
    z-index: 1;
}

.content {
    min-height: 365px;
}

.ama {
    border: 3px solid rgb(0, 0, 0);
    background: rgba(255, 255, 255, 1);
    margin-top: 15px;
    text-align: center;
}

#ama {
    width: 300px;
    padding: 5px;
    margin: 10px;
    border: 3px solid rgb(0, 0, 0);
}

label {
    display: inline-block;
    margin-top: 10px;
}

input[type="submit"] {
    border: 3px solid rgb(0, 0, 0);
    font-family: "basiic";
    background: white;
    width: 50%;
    padding: 5px;
}

input[type="submit"]:hover {
    background: black;
    color: white;
}

#statuscafe {
    margin-top: 15px;
    padding: 0.5em;
    border: 3px solid rgb(0, 0, 0);
    background-color: white;
}

#statuscafe-username {
    margin-bottom: 0.5em;
}

#statuscafe-content {
    margin: 0 1em 0.5em 1em;
}

.cat {
    max-width: 245px;
    position: absolute; 
    bottom: 0;
}

#evil,
#rice,
#shiny {
    width: 100px;
    position: absolute;
}

#evil {
    top: 76px;
    left: 10px;
}

#rice {
    top: 136px;
    left: 10px;
}

#shiny {
    top: 194px;
    left: 10px;
}

@media (max-width: 640px) {
    .parent {
        display: flex;
    }

    .right {
        display: none;
    }

    .left {
        display: none;
    }
}
