/* Extra small devices (phones,575px and down) */
@media only screen and (max-width: 575px) {...}

/* Small devices (portrait tablets and large phones, 576px and up) */
@media only screen and (min-width: 576px) and (max-width: 768px) {...}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 769px) and (max-width: 992px) {...}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 993px) and (max-width: 1200px) {...}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1201px) {...}

/* Styling for all elements which do not change in styling across 5 screen widths */

#Bulb {
	width: 20%;
	max-width: 200px;

	height:  auto;
}

.canvbox {
	margin: 0.5em;

	border-width: 0.5em;
	border-style: solid;
	border-color: var(--prim-shade-white);
}