
body{
  background-color: #f4b4cc; 
  margin: 0; 
  position: relative; 
  height: 100vh;
  padding: 0;
  /* ändra fonten för timestamps på yt videorna */
  font-family: "Coral Pixels", "National park", Roboto, Arial;
}

p{
  margin-top: 0;
  margin-bottom: 0;
}

a{
  text-decoration: none;
}

button{
  font-family: "Coral Pixels", "National park", Roboto, Arial;
}

img.bg {
  /* Set rules to fill background */
  min-height: 100%;
  min-width: 1024px;
	
  /* Set up proportionate scaling */
  width: 100%;
  height: auto;
	
  /* Set up positioning */
  position: fixed;
  top: 0;
  left: 0;

  opacity: 50%;
}

@media screen and (max-width: 1024px) { /* Specific to this particular image */
  img.bg {
    left: 50%;
    margin-left: -512px;   /* 50% */
  }
}

/* The element to apply the animation to */
.window{
  position: fixed; 
  top: 50px; 
  left: 15%; 
  right: 15%; 
  bottom: 50px; 
  display: flex; 
  flex-direction: column;
  background-color: rgb(236, 81, 145); 
  border-radius: 10px;
  box-shadow: 0px 0px 50px rgb(144, 194, 255);
  animation-name: example;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

/* The animation code */
@keyframes example {
  from {box-shadow: 0px 0px 50px rgb(255, 255, 255);}
  to {box-shadow: 0px 0px 70px rgb(255, 255, 255);}
}


.window-header{
  display: flex; 
  height: 45px; 
  background-color: rgb(236, 81, 145); 
  border-top-left-radius: 10px; 
  border-top-right-radius: 10px; 
  flex-shrink: 0;
}

.close-buttons{
  display: flex; 
  width: 90px; 
  align-items: center; 
  justify-content: center; 
  gap: 7px;
  background-color: rgb(236, 81, 145);
  border-bottom-right-radius: 15px;
  border-top-left-radius: 15px;
  z-index: 1;
}

.tabs{
  display: flex; 
  height: 100%; 
  flex: 1;
  overflow-x: scroll;
}


.close-button{
  height: 12px; 
  width: 12px; 
  border-radius: 50%;
}

.tab-anchor, .tab-anchor-roa, .tab-anchor-loa{
  display: flex; 
  flex: 1;
  z-index: 1;
  background-color: rgb(236, 81, 145); 
  padding: 0px 7px 0px 0px;
  border-top-right-radius: 20px;
}

.tab-anchor-loa{
  border-bottom-right-radius: 15px; padding-right: 7px;
}

.tab-anchor-roa{
  border-bottom-left-radius: 15px; padding-left: 7px;
}

.tab{
  display: flex; 
  align-items: center; 
  flex: 1; 
  background-color: rgb(247, 171, 133); 
  border: none; 
  border-radius: 10px; 
  gap: 6px; 
  margin: 7px 0px;
  z-index: 2;
}

.tab:hover{
  cursor: pointer;
}

.open-tab{
  display: flex; 
  align-items: center; 
  flex: 1; 
  background-color: #d1dc5c; 
  border: none; 
  border-top-left-radius: 10px; 
  border-top-right-radius: 10px; 
  gap: 6px; 
  margin: 7px 0px 0px 0px;
  position: relative;
}

.open-tab-button{
  display: flex; 
  margin-bottom: 7px; 
  flex: 1; 
  background-color: #d1dc5c; 
  gap: 6px; 
  border: none;
  border-radius: 5px;
  z-index: 1;
}

.favicon{
  height: 15px;
}

.content{
  display: flex;
  flex-direction: column; 
  flex: 1; 
  border-bottom-right-radius: 10px; 
  border-bottom-left-radius: 10px;
  background-color: white; 
  position: relative;
  /* padding: 0px; */
  background-color: rgb(255, 241, 244);
  padding: 20px;
  overflow: hidden;
  flex-shrink: 1;
}

.open-tab-concave-corners{
  background-color: #d1dc5c; position: absolute; left: -20px; right: -20px; height: 50%; bottom: 0;
}

.window-info{
  display: flex; 
  background-color: #d1dc5c; 
  height: 45px; 
  border-bottom: 1px solid rgb(137, 223, 142); 
  align-items: center; 
  padding: 0 15px; 
  gap: 15px; 
  border-top-left-radius: 10px; 
  border-top-right-radius: 10px;
  flex-shrink: 0;
}

.window-search-bar{
  display: flex; 
  background-color: rgb(253, 253, 184); 
  flex: 1; 
  height: 30px; 
  border-radius: 15px; 
  margin-right: 100px; 
  align-items: center; 
  padding: 0 15px; 
  font-size: 14px; 
  color: rgb(58, 58, 58);
}

.computer-card{
  display: flex; 
  flex-direction: column; 
  gap: 10%; 
  width: 50%; 
  padding: 20px; 
  padding-bottom: 75px; 
  background-color: white; 
  text-align: center; 
  border-radius: 15px;
  position: absolute;
  top: 20%;
  z-index: 5;
}
