@font-face { font-family: 'Garamond2'; src: url('../fonts/EBGaramond.ttf');}

#container {
  margin: auto;
  width: 1230px;
}

svg {
  border: 1px solid gray;
  border-radius: 25px;
  height: 600px;
  width: 600px;
  margin: 5px;
  opacity: 0.9;
}

html {
  font-family: 'Garamond2';
  font-size: 20px;
}

h2, h3 {
  text-align:center;
}

p {
  text-align: justify;
  padding-left: 2%;
  padding-right: 2%;
}

div.tooltip {	
  display: flex;
  justify-content: center;
  position: absolute;			
  text-align: left;			
  width: 400px;					
  height: 100px;									
  border: 1px solid lightgray;		
  border-radius: 8px;		
  pointer-events: none;
  padding: 10px 10px 10px 10px;			
}

#mcu{
  background-image: url(../images/mcu.png);
  background-repeat: no-repeat;
  background-position-x: center;
  background-size: 50%;
  opacity: 0.95;
}

#dceu{
  background-image: url(../images/dceu.webp);
  background-repeat: no-repeat;
  background-position-x: center;
  background-size: 50%;
}

#box_curve{
  opacity: 0.95;
  border: 1px solid gray;
  border-radius: 50px;
}

.theme-switch-wrapper {
  display: flex;
  justify-content: end;
}
.theme-switch {
  display: inline-block;
  height: 34px;
  position: relative;
  width: 60px;
  margin-right: 80px;
}
.theme-switch input {
  display: none;
}
.slider {
  background-color: #ccc;
  bottom: 0;
  cursor: pointer;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: 0.4s;
}
.slider:before {
  background-color: #fff;
  bottom: 4px;
  content: "";
  height: 26px;
  left: 4px;
  position: absolute;
  transition: 0.4s;
  width: 26px;
}
input:checked + .slider {
  background-color: #66bb6a;
}
input:checked + .slider:before {
  transform: translateX(26px);
}
.slider.round {
  border-radius: 34px;
}
.slider.round:before {
  border-radius: 50%;
}
