.background-image {
    position: absolute;
    right: 0;
    top: 0;
    height: 100vh;
    z-index: -1;
}

body{
    background-color: black;
}

.main{
    display: flex;
    justify-content: center;
    text-align: center;
    height: 100vh;
    align-items: center;
}
.frame{
    border-radius: 8rem;
    height: 80vh;
    width: 40vw;
    background-color: rgba(86, 86, 86, 0.4);
    color: white;
    font-family: Comic Sans MS, Comic Sans, cursive;
    box-shadow: 0 0 4rem rgb(0, 0, 0);
}

.frame h1{
    margin-top: 1rem;
    font-size: 5rem;
    font-weight: bold;
    margin-bottom: 0;
    font-family: 'Brush Script MT', Brush Script Std, cursive;
    filter: drop-shadow(0px 1px 2px rgb(255, 255, 255));
}
.frame hr{
    display: flex;
    margin: 0;
    border: 1px solid rgba(134, 134, 134, 0.4);
    width: 20vw;
    margin-left: 10vw;
    margin-bottom: 1vw;
}

.flex-row{
    display: flex;
    flex-direction: row;
}

.input{
    border: 2px solid rgba(134, 134, 134, 0.4);
    border-radius: 1rem;
    background-color: rgba(134, 134, 134, 0.4);
    box-shadow: 0 0 2rem rgb(0, 0, 0);
}


table{
    display: flex;
    width: 20vw;
    margin-left: 10vw;
    justify-content: space-evenly;
}

summary{
    list-style: none;
    margin-top: 5vh;
    font-family: Andale Mono, monospace;
    font-size: 3rem;
    font-weight: bold;
    border: 0.5rem solid rgba(134, 134, 134, 0.4);
    background-color: rgba(147, 147, 147, 0.4);
    border-radius: 1rem;
    margin-bottom: 2rem;
    width: 20vw;
    margin-left: 10vw;
}

input{
    border: none;
    background: none;
}

.color-selector{
    width: 0;
    border: 2px solid rgba(134, 134, 134, 0.4);
    border-radius: 1rem;
    background-color: rgba(147, 147, 147, 0.4);
}

h2{
    filter: drop-shadow(0px 1px 2px rgb(255, 255, 255));
}

h3{
    filter: drop-shadow(0px 1px 2px rgb(255, 255, 255));
    margin: 0;
}

p{
    margin: 0;
}

a{
    color: inherit;
}

input:focus{
    transform: scale(1.025);
}