:root {
    font-size: 16px;
    color:rgb(255, 255, 255);
    box-sizing: border-box;
 }
 
 :root * {
    box-sizing: inherit;
    color:rgb(255, 255, 255);
    box-sizing: border-box;
 }
  
 body {
    margin: 0;
    background-color: #00152e;
    font-family: Arial, sans-serif;
    background-image: url('./Background-body.jpg');
    background-size: cover; /* Makes the image cover the entire background */
    background-repeat: no-repeat; /* Prevents the image from repeating */
    background-position: center;
 }

.site-header {
    background-color: rgb(52, 52, 52);
    color: #fff;
    flex-direction: column;
    align-items: center;
    padding: 10px 20px;
    margin-bottom: 0px;
}

.top-bar {
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 10px 20px;
}

.logo img {
    max-width: 15%;
    height: auto;
    padding: 10px 20px;
}

img.logo1:hover {
    box-shadow: 0 0 2px 1px rgb(37, 150, 190);
  }

.tagline {
    margin: 0px;
    font-size: 1.5rem;
    font-weight: bold;
}

h1.top-header{
    margin-top: 0px;
    padding-top: 0px;
    text-align: center;
}

.subtitle {
    font-size: 1rem;
    margin: 0;
    text-align: center;
}

.navigation {
    display: flex;
    justify-content: center;
    background-color: rgb(52, 52, 52);
    width:auto;
    padding: 10px 0;
    border-top: 2px solid #ddd;
}

.navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.navigation li {
    display: inline;
    margin: 0 15px;
}

.navigation a {
    color: rgb(255, 255, 255);
    text-decoration: underline;
    text-decoration-color:rgb(37, 150, 190);
    font-size: 1rem;
}

.navigation a:hover {
    text-decoration: underline;
    color: rgb(37, 150, 190);
}

.language-selector {
    align-items: center;
    margin-left: auto;
}

.language-selector select {
    font-size: 15px;
    padding: 5px;
    border: 1px solid #ddd;
    background-color: grey;
    border-radius: 5px;
}

.mp5{
    margin-top: 3rem !important
}

/* This is so that the content is centered inside and theres margin (old-school style) */
@media (min-width: 1200px) {
    .main-container, .container-lg, .container-md, .container-sm, .container-xl {
      max-width: 1140px;
    }
}

.main-container{
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-right: auto;
    margin-left: auto;
    background-color: rgb(52, 52, 52);
}

.h1, .main-container{
    text-align: center;
}

.main-column{
    display: flex;
    flex-wrap: wrap;
}

.h1, .main-column{
    text-align: center;
}

.office:hover{
    transform: scale(2);
    box-shadow: 0 0 2px 1px rgb(37, 150, 190);
}

/* customizable snowflake styling */
.snowflake {

  color: #fff;

  font-size: 1em;

  font-family: Arial, sans-serif;

  text-shadow: 0 0 5px #000;

}

.snowflake,.snowflake .inner {
    animation-iteration-count:infinite;animation-play-state:running}@keyframes snowflakes-fall{0%{transform:translateY(0)}100%{transform:translateY(110vh)}}
    @keyframes snowflakes-shake{0%,100%{transform:translateX(0)}50%{transform:translateX(80px)}}
    .snowflake{position:fixed;top:-10%;z-index:9999;-webkit-user-select:none;user-select:none;cursor:default;animation-name:snowflakes-shake;animation-duration:3s;animation-timing-function:ease-in-out}
    .snowflake .inner{animation-duration:10s;animation-name:snowflakes-fall;animation-timing-function:linear}.snowflake:nth-of-type(0){left:1%;animation-delay:0s}
    .snowflake:nth-of-type(0) .inner{animation-delay:0s}.snowflake:first-of-type{left:10%;animation-delay:1s}.snowflake:first-of-type .inner,.snowflake:nth-of-type(8)
    .inner{animation-delay:1s}.snowflake:nth-of-type(2){left:20%;animation-delay:.5s}.snowflake:nth-of-type(2) .inner,.snowflake:nth-of-type(6) .inner{animation-delay:6s}
    .snowflake:nth-of-type(3){left:30%;animation-delay:2s}.snowflake:nth-of-type(11) .inner,.snowflake:nth-of-type(3) .inner{animation-delay:4s}
    .snowflake:nth-of-type(4){left:40%;animation-delay:2s}.snowflake:nth-of-type(10) .inner,.snowflake:nth-of-type(4) .inner{animation-delay:2s}
    .snowflake:nth-of-type(5){left:50%;animation-delay:3s}.snowflake:nth-of-type(5) .inner{animation-delay:8s}.snowflake:nth-of-type(6){left:60%;animation-delay:2s}
    .snowflake:nth-of-type(7){left:70%;animation-delay:1s}.snowflake:nth-of-type(7) .inner{animation-delay:2.5s}.snowflake:nth-of-type(8){left:80%;animation-delay:0s}
    .snowflake:nth-of-type(9){left:90%;animation-delay:1.5s}.snowflake:nth-of-type(9) .inner{animation-delay:3s}.snowflake:nth-of-type(10){left:25%;animation-delay:0s}
    .snowflake:nth-of-type(11){left:65%;animation-delay:2.5s
}

.main-footer {
    background-color: rgb(52, 52, 52);
    color: white;
    justify-content: center;
    padding: 1rem !important;
    margin-top: 3rem !important;
    display: flex;
    position: fixed; /* Fix the footer at the bottom */
    bottom: 0; /* Align it to the bottom of the viewport */
    left: 0; /* Align it to the left edge */
    width: 100%; /* Make it span the entire width */
    z-index: 1000; /* Ensure it stays above other elements */
}

.footer1{
    display: inline-flex;
    width: 33%;
    vertical-align: top;
    padding-left: 10px;
    color: #fff;
    text-align: left;
}

.inside-footer1{
    text-decoration: underline;
    text-decoration-color: rgb(37, 150, 190);
    color: white;
}

.inside-footer1:hover{
    text-decoration: underline;
    color:rgb(37, 150, 190);
}

.footer2{
    display: inline-block;
    width: 30%;
    vertical-align: top;
    color: #fff;
    text-align: center;
}

.footer3 {
    display: inline-block;
    width: 30%;
    vertical-align: top;
    color: #fff;
    text-align: right;
}