@import url('phone.css');

html {
    padding: 0;
    margin: 0;
    /* overflow: hidden; */
}

body {
    background-color: darkslateblue;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    height: 100vh;
    color: white;
    margin: 0;
    padding: 0;
    width: 100vw;
}

h4 {
    font-size: 1.5rem;
    margin: 0;
    margin-top: 20px;
}

h6 {
    font-weight: normal;
    font-size: 1rem;
    margin: 0;
}

li {
    font-size: 1rem;
}

div.container {
    /* border: 2px solid blue; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100vh;
}

div.container div.quiz {
    /* border: 2px solid green; */
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80vw;
    height: 100vh;
}

div.container div.quiz div.inner {
    /* border: 2px solid yellow; */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    width: 80%;
    height: auto;
    padding: 0;
}

div.container div.cart {
    /* border: 2px solid royalblue; */
    display: flex;
    justify-content: start;
    flex-direction: column;
    width: 20vw;
    height: 100%;
    background-color: white;
    color: black;
    padding: 0;
    /* font-family: monospace; */
}

div.container div.cart div.innercart {
    /* border: 2px solid blueviolet; */
    width: auto;
    padding: 10px 20px;
}

div#question {
    /* border: 2px solid red; */
    height: 100%;
}

input {
    /* border: 2px solid pink; */
    border: none;
    display: block;
    margin: auto;
    background: repeating-linear-gradient(90deg, 
		transparent 0, transparent 0.25rem,
		white 0.25rem, white 1.25rem, 
		transparent 1.25rem, transparent 2.25rem) 
		0 100%/ 50rem 2px no-repeat;
    color: white;
    text-align: left;
    font-family: monospace;
    font-size: 2rem;
    width: auto;
    height: auto;
    letter-spacing: 1rem;
    /* padding-left: 1.5rem; */

    &:focus {
        outline: none;
        color: burlywood;
    }
}

div.container div.quiz div.inner img {
    /* border: 2px solid red; */
    max-height: 60vh;
    height: auto;
    max-width: 60vw;
}

div.container div.quiz span#fieldinfo {
    font-size: 1rem;
    padding: 10px;
    opacity: 0.35;
}
