@import "./resert.css";

@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@300;500&display=swap');

table {
    font-family: 'Roboto Slab', serif;
    font-weight: 400;
    font-size: 20px;
    width: 100%;
    border-collapse: collapse;
    border: 0 px solid #c114f1;
  }
  
  thead th:nth-child(1) {
    width: 50%;
  }
  
  thead th:nth-child(2) {
    width: 50%;
  }
  
  th, td {
      padding: 20px;
      border: 2px solid #c114f1;
  }
  tbody tr:nth-child(odd) {
    background-color: #1fe1ca;
  }
  
  tbody tr:nth-child(even) {
    background-color: #6bec1b;
  }
  
  thead{
      background-color: #47b9fb;
  }
  
  table {
    background-color: #47b9fb;
  }

  .btn {
	text-decoration: none;
	color: #6b5770;
	background-image: linear-gradient(90deg, #fd7f34, #bd155b);
	display: inline-block;
	padding: 14px 30px;
	border: 1px solid;
	position: relative;
	z-index: 0;
	border-radius: 5px;
	box-sizing: border-box;
	margin: 15px 15px 15px 0;
	outline: none;
	cursor: pointer;
	user-select: none;
	appearance: none;
	touch-action: manipulation;  
}
.btn:before {
	content: '';
	position: absolute;
	left: -2px;
	top: -2px;
	width: calc(100% + 4px);
	height: calc(100% + 4px);
	background: linear-gradient(90deg, #fd7f34, #bd155b);
	z-index: -2;
	transition: .4s;
	border-radius: 5px;
}
.btn:after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, #fff, #fff);
	z-index: -1;
	transition: .4s;
	border-radius: 4px;
}
.btn:hover {
	color: #fff;
	transition: .3s;
}
.btn:hover:after {
	background: linear-gradient(90deg, #fd7f34, #bd155b);
}
.btn:active:after {
	background: linear-gradient(90deg, #d96d2d, #760f3a);
}
.btn:focus-visible {
	box-shadow: 0 0 0 3px #fd7f34;
}
.btn:disabled {
	pointer-events: none;
}
.btn:disabled:before {
	filter: grayscale(100%);
}