@font-face {
    font-family: 'mozilla';
    src: url('../fonts/MozillaHeadline-VariableFont_wdth\,wght.ttf') format('truetype');
    font-weight: lighter;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/roboto.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

h1 {
    font-family: 'Roboto', sans-serif;
}
p {
    font-family: 'Roboto', sans-serif;
}

body {
    /*Add background image, and position it and disable repeating*/
    background-image: url('../img/photographyphoto.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.topBar {
    font-family: 'Roboto' sans-serif;
    color: black;
    position: absolute;
    width: 100%;
    display: flex;
    backdrop-filter: blur(10px);
    background-color: rgba(0, 0, 0, 0.125);
    color: #fff;
    justify-content: space-between;
    gap: 32px;
    border-radius: 5px;
}

.topBarText {
    font-family: 'mozilla', sans-serif;
    text-align: center;
    margin-left: 45%;
}

.topBarClock {
    font-family: 'mozilla', sans-serif;
    text-align: center;
    transform: translate(-12vh, 0%);
}

.appiconpic{
    width: 5vh;
    height:auto;
}
.appicontext{
    font-family: 'mozilla';
}

#boot-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999; 
  transition: opacity 0.8s ease, visibility 0.8s; 
}

.boot-content {
  text-align: center;
  color: #ffffff;
  font-family: sans-serif;
}

.boot-logo {
  width: 120px;
  height: auto;
  margin-bottom: 25px;
  animation: spin 1s linear infinite; 
}

.boot-text {
  font-size: 1.1rem;
  letter-spacing: 1px;
  font-family: 'mozilla', sans-serif;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

#boot-screen.fade-out {
  opacity: 0;
  visibility: hidden;
}