@import url("https://fonts.googleapis.com/css2?family=Open+Sans&display=swap");
/* Body Design CSS Code */
body {
  background-image: url("../Images/bg.jpeg");
  background-size: cover;
  overflow: hidden;
  height: 100vh;
  font-family: 'Open Sans', sans-serif;
}

/* Icons section */
.icons {
  margin: 20px 20px;
  width: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.icons div {
  line-height: 18px;
  color: white;
  text-align: center;
  margin-left: 2px;
  font-size: 0.7rem;
}

.chrome {
  width: 74px;
}

.ico {
  width: 49px;
  margin: 11px;
}

/* Taskbar section */
.taskbar {
  background-color: #f3f3f3;
  width: 100%;
  position: absolute;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 110;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* StartMenu Design CSS Code */
.startmenu {
  position: absolute;
  bottom: -655px;
  width: 100%;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.startmenu img {
  border-radius: 15px;
  margin: auto;
}

.right {
  position: absolute;
  right: 0;
  margin: 6px 0px;
  height: 85%;
}

/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role="list"],
ol[role="list"] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*# sourceMappingURL=main.css.map */