body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #f0f0f0;
}
.App {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50%;
    margin: 0 auto;
}

iframe {
    width: 50vw;
    height: 28vw;
}

@media (max-width: 600px) {
    .App {
        width: 90%;
    }
    iframe {
        width: 90vw;
        height: 50vw;
    }
}

.App-header {
    display: block;
    align-items: center;
    padding: 8px 16px;
    background-color: #1d3a73;
}

.logo {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.header-links {
    display: flex;
    margin: 16px 0;
}

.header-links a {
    color: white;
    margin: 0px 8px;
}

.header-links a:hover {
    color: #00c3ff;
}


.App-body {
    margin: 8px 16px;
    display: flex;
    flex-direction: column;
}

.links a {
    font-size: 1.5em;
    color: #1d3a73;
}

a {
    text-decoration: none;
    color: black;
    font-weight: bold;
}

a h1 {
    color: white;
    padding: 4px;
    margin: 16px 48px 16px 0px;
}

a:hover {
    color: #00c3ff;
}

.cube>div {
	margin-right: 1px;
	margin-left: 1px;
	margin-top: 1px;
	margin-bottom: 1px;
	width: 2.5vw;
	height: 2.5vw;
    border-style: solid;
    cursor: pointer;
}

@media (max-width: 600px) {
    .cube>div {
        width: 5vw;
        height: 5vw;
    }
    .color-picker>div {
        width: 10vw;
        height: 10vw;
    }
    
}

.cube .center {
    cursor: not-allowed;
}

.cube .dummy {
    cursor: auto;
    border-color: #f0f0f0;
}

.cube-container {
    margin: 16px;
}

.cube {
    display: grid;
	height: fit-content;
	width: fit-content;
	grid-template-columns: repeat(12, 1fr);
	padding: 1px;
	place-content: center;
	justify-items: center;
	align-items: center;
}

.color-picker {
	display: flex;
    flex-direction: row;
	height: fit-content;
	width: fit-content;
	padding: 1px;
	place-content: center;
	justify-items: center;
	align-items: center;
}

.color-picker>div {
    margin-right: 1px;
    margin-left: 1px;
    margin-top: 1px;
    margin-bottom: 1px;
    width: 5vw;
    height: 5vw;
    border: 4px;
    border-style: solid;
    cursor: pointer;
}

.color-picker .selected {
    border-color: aqua;
}

#cube-submit {
    background-color: #1d3a73;
	border: none;
	color: white;
	padding: 16px 32px;
	margin: 16px;
	text-decoration: none;
	font-weight: bold;
	cursor: pointer;
	border-radius: 12px;
}
