.box {
  border: 3px dashed #b04300;
   border-image: linear-gradient(to bottom, #003482, #30baff) 1; 
  background-color: #ffffff;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  flex: 1;
}
@font-face {
  font-family: "Pangolin-Regular";
  src: url("fonts/Pangolin-Regular.ttf") format("truetype");
}

.ptext {
  font-family: "Pangolin-Regular", sans-serif;
}

.iframe {
  border: 3px dashed #b04300;
   border-image: linear-gradient(to bottom, #003482, #30baff) 1; 
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center; 
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin-top: 7%;
  width: 640px;
  height: 480px;
  
}

.button {
  border: 3px solid;
  border-image: linear-gradient(to bottom, #ff8f1f, #ffc619) 1; 
  background-color: #fffacc;
  border-radius: 7px;
  width: 200px;
  transition: all 0.3s ease-in-out;
  padding: 5px;
}

.button:hover {
  transform: scale(1.1);
}

.button2 {
  border: 3px solid;
  border-image: linear-gradient(to bottom, #003482, #30baff) 1; 
  background-color: #fffacc;
  border-radius: 7px;
  width: 200px;
  transition: all 0.3s ease-in-out;
  padding: 5px;
}

.button2:hover {
  transform: scale(1.1);
}

.sidecolumn {
  top: 0;
  height: 100%;
  width: 240px;
  border-right: 3px dotted; 
  border-left: 3px dotted;
  border-image: linear-gradient(to bottom, #ff8f1f, #ffc619) 1; 
  background-color: #ffe494;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  text-align: center;
  margin-left: 2em;
  margin-right: 2em;
  position: fixed;
  z-index: 99;
}


.marquee-container {
  overflow: hidden;
  white-space: nowrap;
  background-color: #b3ffc7;
  border-top: 3px dashed;    
  border-bottom: 3px dashed;
  border-image: linear-gradient(to bottom, #017021, #00a32e) 1;
  width: 700px;
  display: flex;
  padding: 2px;
  margin: 0 auto;
}

.marquee-content {
  display: inline-block;
    padding-left: 100%;
  animation: scroll-left 15s linear infinite;
}

.scrollthing {
    scrollbar-color: #003482 #30baff; 
  scrollbar-width: thin;
  overflow: auto;
}

@keyframes scroll-left {
  0%   { transform: translate(0, 0); }
  100% { transform: translate(-100%, 0); }
}

#icon {margin:auto;}
#icon img {
  border: 3px solid #ffc619;
  border-radius:50%;
  max-width:200px;
}