/* -- background color hihi -- */

body {
    background-color: aqua;
}

/* -- title :3 -- */

h1 {
    font-size: x-large;
    height: 40px;
    line-height: 40px;
    transition: width 5s;
    background: rgb(255, 0, 255);
    width: 25%;
    min-width: fit-content;
    text-align: center;
    margin-inline: auto;
}

h1:hover {
    width: 100%;
}

/* -- text -- */

.whoami {
    position: absolute;
    position: fixed;
    inset: 0px;
    width: 320px;
    height: fit-content;
    max-width: 80vw;
    max-height: 60dvh;
    margin: auto;

    background: rgb(67, 33, 33);
    color: white;
    padding: 15px;
    border-radius: 10px;
}

.whoami > h3 {
    margin-top: 0;
}