*{
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
:root{
  --orange: rgb(247, 76, 14);
  --hoverorange: rgb(170, 45, 0);
  --background: white;
}

.part {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  width: 65%;
  margin: auto;
  padding: 70px 40px 20px 40px;
  background-color: white;
  display: flex;
  justify-content: space-between;
}

p,li{
  font-size: medium;
}

#left{
  width: 40%;
}

#right{
  width: 42%;
}

#right>div:nth-child(1){
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#right>div>div{
  display: flex;
  justify-content: space-around;
  align-items: center;
}

button {
  cursor: pointer;
}

#right input {
  background-color: rgb(250, 250, 250);
  padding: 8px 5px 8px 10px;
  width: 95%;
  border: 1px solid rgb(180, 179, 179);
  border-radius: 6px;
  font-size: medium;
}

input:focus {
  outline: none !important;
  border: 1px solid var(--orange);
}

button {
  width: 100%;
  padding: 10px 0px;
  margin-bottom: 15px;
  font-size: 120%;
  border: 0px solid var(--orange);
}

.btn {
  width: 100%;
  color: white;
  background-color:  var(--orange);
  border-radius: 5px;
}

.gbtn {
  color: white;
  background-color: rgb(57, 127, 241);
  border-radius: 5px;
}

#for{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.c {
  text-align: center;
}

.logo {
  position: relative;
  display: flex;
  margin: auto;
  top: 75px;
  width: 20%;
}

.part>div>a {
  align-self: center;
}

a {
  text-decoration: none;
  color: rgb(57, 127, 241);
  font-weight: 600;
}

.gitbtn{
  background-color: black;
  color: white;
  border-radius: 5px;
}

.btn:hover{
  background-color: var(--hoverorange);
}

.gbtn:hover {
  background-color: rgb(0, 61, 160);
}

.gitbtn:hover{
  background-color: rgb(41, 41, 41);
}

a:hover {
  color: rgb(0, 61, 160);
}

.main{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.main img{
  width: 40%;
}

#botimg img{
  width: 100%;
}