*{
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
}
html{
    height: 100%;
}

body{
    min-height: 100vh;
    background-color: var(--text-color);
    background-image: url("/images/page-bg.png");
    background-repeat: repeat;
    background-size: 100% auto;
}

h2 {
    padding-bottom: 0.25em;
    padding-top: 0.5em;
    padding-left: 0.25em;
}

#page-background{
    display: flex;
    justify-content: center;
}

header{
    display: flex;
    flex-direction: column;
    max-height: 100%;
    padding: 5px;
    min-height: 160px;
    background-image: url("/images/logo/header-image.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: var(--secondary-color);
}

.logo-wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: 100%;
}

#header-logo{
    max-height: 20vh;
    pointer-events: none;
    filter: drop-shadow(0mm -6mm 5mm rgb(37, 37, 37));
}

.logo-wrapper img {
    transition: transform 2.5s ease;
  }
  
  .logo-wrapper:hover img {
    transform: scale(1.1);
  }
  
#space-content{
    min-height: calc(65vh - 100px);
    background-color: var(--tertiary-color);
}

#space-aside{
    background-color: var(--secondary-color);
}

#space-footer{
    background-color: var(--secondary-color);
}

/* Styles for aside*/

aside{
    display: flex;
    justify-content: space-between;
    padding-left: 20px;
    padding-bottom: 20px;
}

#aside-logo-container{
    margin-top: 1em;
    margin-left: 1em;
}

#aside-logo{
    display: block;
    max-height: 10vh;
    width: auto;
    pointer-events: none;
}

.aside-text{
    margin-top: 1em;
    margin-right: 1em;
    display: flex;
    flex-direction: column;
    color: var(--text-color);
}

.aside-heading {
    padding-top: 5px;
    padding-bottom: 5px;
}

#aside-contact > p{
    padding-top: 4px;
}

#aside-contact > p > a{
    text-decoration: none;
    color: white;
    z-index: 99;
}
#aside-contact > p > a > *{
    padding-right: 0.5em;
}
.aside-link{
    position: relative;
    bottom: 5px;
}

#instagram {
    max-height: 24px;
}

#aside-socials{
    display: none;
}

/*Styles for footer*/

footer {
    padding-top: 1em;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    color: white;
    padding-left: 3em;
}

#footer-links{
    padding: 3px;
    border-radius: 4px;
}

#footer-links > a{
    color: rgb(255, 255, 255);
    text-decoration: none;
    padding-right: 15px;
}

footer > p{
    /* font-size: 12px; */
    margin-bottom: 1em
}

.noselect {
    -webkit-touch-callout: none; /* iOS Safari */
      -webkit-user-select: none; /* Safari */
       -khtml-user-select: none; /* Konqueror HTML */
         -moz-user-select: none; /* Old versions of Firefox */
          -ms-user-select: none; /* Internet Explorer/Edge */
              user-select: none; /* Non-prefixed version, currently
                                    supported by Chrome, Edge, Opera and Firefox */
  }

.btn404{
    text-align: center;
}

#topBtn {
    display: none; 
    position: fixed;
    bottom: 20px; 
    right: 30px; 
    z-index: 3; 
    border: none; 
    outline: none; 
    background-color: var(--secondary-color);
    color: var(--text-color);
    cursor: pointer; 
    padding: 15px; 
    border-radius: 10px; 
    font-size: 18px; 
  }
  
  #topBtn:hover {
    background-color: #555;
  }