* {
    box-sizing: border-box;
  }
body {
    width: 100%;
    font-family: Roboto, Arial,sans-serif;
    margin: 0px;
    padding: 0px;
    color: #ffffff;
    background-color: #333333;
}

html{
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}

a:link {color:#ffffff;text-decoration:none;}
a:visited {color:#ffffff;text-decoration:none;}
a:hover {color:#ffffff;text-decoration:none;}
a:active {color:#ffffff;text-decoration:none;}

h3 {font-family: Roboto, Arial,sans-serif;}

#fixed {
    position: fixed;
    width : 100%;
    container-type: inline-size;
    min-width: 313px;
    height : 36px;
}

#lfixed {
    position: relative;
    width: 288px;
    height: 36px;
    float:left;
}

#rfixed {
    position: relative;
    width: 133px;
    height: 36px;
    float:right;
    overflow: hidden;
}

.social{
    float:right;
    margin:4px 5px 0px 0px;
}

#globe {
    height: 20px;
    float:left;
    margin-top:8px;
    margin-left:5px;
    margin-right:3px;
}

#geteachName {
    float:left;
    font: 300 24px Roboto, Arial, sans-serif;
    line-height: 1.4;
    margin: 0;
}
#container {
    position:absolute;
    width:100%;
    min-width: 313px;
    height:100%;
    background-color: #282828;
    margin-left:auto;
    margin-right:auto;
}

#header {
    position:relative;
    height:36px;
    width:100%;
    background-color: #000000;
    margin-left:auto;
    margin-right:auto;
}
.map-container {
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 5px;
    justify-content: space-between;
    height: calc(100% - 60px);
  }
  
  .leftDiv,
  .rightDiv {
    flex: 1;
    height: 100%;
    position: relative; /* Only needed if you plan to absolutely position children */
  }
  
  iframe {
    width: 100%;
    height: 100%;
    border: none;
  }

  @container mapContainer (max-aspect-ratio: 1/1) {
    .map-container {
      flex-direction: column;
    }

/* Hide if the container's width is under 425px */
@container (max-width: 425px) {
  #rfixed {
    display: none;
  }
}
  }