.body {
    background-color: #171616;
    display: flex;
    height: 100vh;
    width: 100vw;
    max-height: 100vh;
    max-width: 100vw;
    overflow: hidden;
}

.sidebar {
    height: 100vh;
    min-width: 250px;
    min-height: 100vh;
    background-color: #2b2929;
    position: relative;
    top: 0;
    left: 0;
    overflow-x: hidden;
    border-right: 5px solid #001b46;
    padding-left: 20px;
    padding-top: 10px;
    font-size: 16px;
    display: flex;
    flex-direction: column;
}

.sidebar a {
    color: #bfcfff;
    text-decoration: none;
    display: block;
    transition: color 0.2s;
    padding-left: 5px;
    font-size: 24px;

}

.sidebar a:hover {
    color: #ffffff;

}

.undertext {
  color: black;
  font-size: 10px;
}

.colormeblue {
    color: blue;
}

.pagecenter {
    display: flex;
    justify-content: center;
    align-items: center;
}

 #main-content {
    display: flexbox;
    flex: 1;
    height: 100%;
    min-height: 100%;
    min-width: 0;
 }

 .bodytext {
    padding-left: 4%;
 }

 .iframeflex {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 420px;
    width: 420px;
    
    
 }

 .iframe-container {
    display: flex;
    justify-content: center; /* horizontal center */
    align-items: center;     /* vertical center (if parent has height) */
    margin-top: 50px;        /* optional spacing */
    width: auto;
  }
  .iframe-container iframe {
    width: 800px;
    height: 420px;
    border: 2px solid black; /* replace with your style */
  }

  .lefttextgap {
    padding-left: 25px;
  }