*{
  margin: 0;
  padding: 0;
}

body {
  background-image: url('/Background/HomepageBG.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  width: 100%;
  height: 100%;
}
h1{
  color: #FFFFFF;
  font-size: 60px;
  font-family: 'Segoe UI';
  font-weight: 600;
  background-color: black;
  margin-top: 0.1px;
}

.Content{
  background-color: rgba(0, 0, 0, 0.8);
  margin-left: 7%;
  margin-right: 7%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}
::-webkit-scrollbar{
  width: 10px;
}
::-webkit-scrollbar-thumb{
  background-color: rgb(68, 68, 68);
}
::-webkit-scrollbar-thumb:hover{
  background-color: #FF0000;
}

.Welcoming{
  background-color: black;
  background: rgba(0, 0, 0, 0.5);
  font-size: 30px;
  content: 10px;

  
  padding-left: 1%;
  padding-right: 1%;
  margin-left: 30px;
  margin-right: 30px;
}

.Greeting{
  color: #FFFFFF;
  font-size: 40px;
  font-family: 'Segoe UI';
  font-weight: normal;
  text-decoration: underline;
}

p {
  color: #FFFFFF;
  font-family: 'Segoe UI';
}

.link:link{
  color: #0099FF;
  text-decoration: none;
}
.link:hover{
  color: #70baeb;
  text-decoration: underline;
}
.link:visited{
  color: #a570eb;
  text-decoration: underline;
}

/* Straightens the text */
.BtnTxt{
  transform: skew(-20deg);
}

/* Flex container */
.Container{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: 60px;
  margin-top: 60px;
}

button{
  color: #FFFFFF;
  font-size: 35px;
  position: relative;
  margin-top: -15px;

  border: none;
  width: 387px;
  height: 132px;
  background-color: rgba(0, 0, 0, 0.53);
  transform: skew(20deg);
}

.Btn:hover{ 
  background-color: #FF0000;
}

/* Dropdown function */
li a, .DDBtn{
  display: inline-block;
  color: #FFFFFF;
  font-family: 'Segoe UI';
  text-align: center;
  text-decoration: none;

  display: inline-block;
  padding: 14px 16px;
  transform: skew(20deg);
}

button:hover, li:hover{
  background-color: #FF0000;
}

.DD-Txt{
  color: #FFFFFF;
  font-family: 'Segoe UI';
  text-decoration: none;
}

.DD-Cont{
  list-style-type: none;
  display: none;
  position: absolute;
  background-color: black;
  transform: skew(-20deg);

  margin: 0px;
  padding: 0px;
  z-index: 10;
}
.DD-Cont a{
  display: block;
  transform: skew(0deg);
}
button:hover .DD-Cont{
  display: block;
}

.Btn1, .Btn2, .Btn3{
  position: relative;
  z-index: 7;
}