/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
display: flex;
background-image: linear-gradient(to bottom, orange);
background-color: orange;
justify-content: center;
align-items:flex-start;
}

.Main {
background-image: linear-gradient(to bottom, white, grey);
background-color: white;
outline: 2px solid grey;
border-radius: 5px;
box-shadow: 1px 10px 10px black;
width: 640px;
min-height: 200px;
padding: 1px;
}

.bahr {
background-image: linear-gradient(to top, white, grey);
background-color: grey;
outline: 2px solid grey;
border-radius: 5px;
box-shadow: 1px 1px 10px white;
width: 640px;
display: flex;
}

.greddy {
background-image: linear-gradient(to top, #bb5e07, orange);
background-color: orange;
outline: 2px solid #bb5e07;
border-radius: 5px;
box-shadow: 1px 1px 10px white;
}

.butt1 {
background-image: linear-gradient(to bottom, white, #bb5e07, orange);
background-color: orange;
outline: 2px solid #bb5e07;
border-radius: 5px;
}

.butt1:hover {
box-shadow: 1px 1px 10px orange;
background-image: linear-gradient(to bottom, white, #c56307, #ffaf1a);
}

.butt8 {
background-image: linear-gradient(to bottom, white, #404040, grey);
background-color: grey;
outline: 2px solid #404040;
border-radius: 5px;
}

.butt8:hover {
box-shadow: 1px 1px 10px grey;
background-image: linear-gradient(to bottom, white, #4d4d4d, #8c8c8c);
}

.myusik {
background-image: linear-gradient(to bottom, white, gray);
background-color: lime;
outline: 2px solid gray;
box-shadow: 1px 1px 10px white;
border-radius: 5px;
}

.layout {
display: flex;
background-image: linear-gradient(to bottom, white, grey);
background-color: pink;
outline: 2px solid grey;
box-shadow: 1px 1px 10px white;
border-radius: 5px;
}

.Lbar {
width: 150px;
background-image: linear-gradient(to top, #bb5e07, orange);
background-color: orange;
outline: 2px solid #bb5e07;
box-shadow: 1px 1px 10px white;
border-radius: 5px;
}

.Txt {
background-image: linear-gradient(to bottom, white, grey);
background-color: pink;
outline: 2px solid grey;
box-shadow: 1px 1px 10px white;
border-radius: 5px;
flex: 1;
}

/* Text Gradient CSS */
h1 {
  color: #000000;
  background-image: linear-gradient(180deg, #000000 0%, #ffffff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#youtube-checker {
background-image: linear-gradient(to bottom, white, grey);
background-color: lightblue;
outline: 2px solid grey;
box-shadow: 1px 1px 10px white;
border-radius: 5px;
}

.butt1,.butt8 {
  
  /*!important: I had A.I generate this code... What? It's good for SOME things.*/
  
padding: 8px;
transition-duration: 0.5s; /* Specify the duration of the transition */

  /*DONNE*/

cursor: pointer;
}

.butt1:hover,.butt8:hover {
  transform: scale(1.1); /* 1.1 times bigger */
}

.butt1:active.butt8:active {
  transform: scale(0.9); /* 0.9 times bigger */
}

