/* 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, deeppink, white, lime, white, deeppink);
background-color: deeppink;
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, #b3005f, deeppink);
background-color: deeppink;
outline: 2px solid #b3005f;
border-radius: 5px;
box-shadow: 1px 1px 10px white;
}

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

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

.butt2 {
background-image: linear-gradient(to bottom, white, maroon, red);
background-color: red;
outline: 2px solid maroon;
border-radius: 5px;
}

.butt2:hover {
box-shadow: 1px 1px 10px red;
background-image: linear-gradient(to bottom, white, #990000, #ff1a1a);
}

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

.butt3:hover {
box-shadow: 1px 1px 10px yellow;
background-image: linear-gradient(to bottom, white, #cc7a00, #ffff1a);
}

.butt4 {
background-image: linear-gradient(to bottom, white, green, lime);
background-color: lime;
outline: 2px solid green;
border-radius: 5px;
}

.butt4:hover {
box-shadow: 1px 1px 10px green;
background-image: linear-gradient(to bottom, white, #009900, #1aff1a);
}

.butt5 {
background-image: linear-gradient(to bottom, white, navy, #3399ff);
background-color: aqua;
outline: 2px solid #006666;
border-radius: 5px;
}

.butt5:hover {
box-shadow: 1px 1px 10px #4da6ff;
background-image: linear-gradient(to bottom, white, #000099, #4da6ff);
}

.butt6 {
background-image: linear-gradient(to bottom, white, purple, violet);
background-color: violet;
outline: 2px solid purple;
border-radius: 5px;
}

.butt6:hover {
box-shadow: 1px 1px 10px purple;
background-image: linear-gradient(to bottom, white, #990099, #f08ff0);
}

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

.butt7:hover {
box-shadow: 1px 1px 10px orange;
background-image: linear-gradient(to bottom, white, #b32d00, #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, lime, green);
background-color: lime;
outline: 2px solid green;
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 bottom, deeppink, mediumvioletred);
background-color: deeppink;
outline: 2px solid mediumvioletred;
box-shadow: 1px 1px 10px white;
border-radius: 5px;
}

.Rbar {
width: 150px;
background-image: linear-gradient(to bottom, deeppink, mediumvioletred);
background-color: deeppink;
outline: 2px solid mediumvioletred;
box-shadow: 1px 1px 10px white;
border-radius: 5px;
}

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

.TabHead:hover {
box-shadow: 1px 1px 10px green;
background-image: linear-gradient(to bottom, white, #009900, #1aff1a);
}

.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,.butt2,.butt3,.butt4,.butt5,.butt6,.butt7,.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,.butt2:hover,.butt3:hover,.butt4:hover,.butt5:hover,.butt6:hover,.butt7:hover,.butt8:hover {
  transform: scale(1.1); /* 1.1 times bigger */
}

.butt1:active,.butt2:active,.butt3:active,.butt4:active,.butt5:active,.butt6:active,.butt7:active,.butt8:active {
  transform: scale(0.9); /* 0.9 times bigger */
}

.Title {
background: #FF008C;
background: radial-gradient(circle farthest-corner at center center, #FF008C 0%, #FFFFFF 50%, #00FF0D 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;

/*Transition time!important!important!important!important (WHOOPS)*/

transition-duration: 0.5s; /* Specify the duration of the transition */

/*Shadow*/

text-shadow: 0px -4px 4px rgba(255, 255, 255, 0.44), 1px 4px 4px rgba(0, 0, 0, 0.54);
}

.Title:hover {
  background: #1EFF00;
background: radial-gradient(circle farthest-corner at center center, #1EFF00 0%, #FFFFFF 50%, #FF008C 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;

/*Shadou*/

text-shadow: 0px -4px 4px rgba(255, 255, 255, 0.44), 1px 4px 4px rgba(0, 0, 0, 0.54), -1px 2px 28px rgba(255, 255, 255, 0.94);
}