/* Style the header with a grey background and some padding */
.header {
    overflow: hidden;
    background: url('SF Skyline.jpeg');
    padding: 20px 10px;
  }
  
  /* Style the header links */
  .header a {
    float: left;
    color: black;
    text-align: center;
    padding: 12px;
    text-decoration: none;
    font-size: 18px;
    line-height: 25px;
    border-radius: 4px;
    
  }
  
  /* Style the logo link (notice that we set the same value of line-height and font-size to prevent the header to increase when the font gets bigger */
  .header a.logo {
    font-size: 25px;
    font-weight: bold;
  }
  
  /* Change the background color on mouse-over */
  .header a:hover {
    background-color: #ddd;
    color: black;
  }
  
  /* Style the active/current link*/
  .header a.active {
    background-color:lightblue;
    color: white;
  }
  
  /* Float the link section to the right */
  .header-right {
    float: right;
  }
  
  /* Add media queries for responsiveness - when the screen is 500px wide or less, stack the links on top of each other */
  @media screen and (max-width: 500px) {
    .header a {
      float: none;
      display: block;
      text-align: left;
    }
    .header-right {
      float: none;
    }
  }

img {
  border-radius: 50%;
}

.bigtitle {
  font-family:'Open Sans', sans-serif;
  font-weight: bold;
  color: black;
  -webkit-text-stroke: 1px lightblue;
  text-stroke: 1px lightblue;
}



/*---------------*/


/* Tooltip container */
.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}

/* Tooltip text */
.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: #555;
  color: #fff;
  font-family:'Open Sans', sans-serif;
  font-weight: bold;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;

  /* Position the tooltip text */
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;

  /* Fade in tooltip */
  opacity: 0;
  transition: opacity 0.3s;
}

/* Tooltip arrow */
.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

.row > .column {
  padding: 0 8px;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Create four equal columns that floats next to eachother */
.column {
  float: left;
  width: 25%;
}

img.hover-shadow {
  transition: 0.3s;
}

.hover-shadow:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.centered-text {
  display: flex;
  font-size: 50 px;
  font-family:'Open Sans', sans-serif;
  font-weight: bold;
  color: black;
  justify-content: center;
  align-items: center;
  height: 100px; /* or whatever height you want the div to be */
  padding: 20px; /* add padding here */
}

.background{
  background: lightblue;
}

.logo-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.softwarelogo {
  width: 200px;
  height: 200px;
  padding: 15px;
  left: -50px;
  object-fit: cover;
  border: 2px solid black;
}

.footer {
  background-color: silver;
  padding:10px;
  color:white;
  border-top:10px navy; 
}

/** --------------*/
#box-container {
  width: 400px;
  height: 300px;
  margin: 0 auto;
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 20px;
  font-size: 20px;
  text-align: center;
}


.smalllogo{
  width: 90px;
  height: 90px;
  padding: 5px;
}





