header{
    background-color: #1e3a63;
    height: 100px;
    width: 100%;
    position: absolute;
    margin-top: -10px;
}
header img{
    height: 100px;
    width: auto;
}
header ul{
  list-style-type: none;
}
#logo{
    height: 250px;
    width: auto;
    top: -65px;
    left: 30px;
    position: relative;
}
#navig ul li{
    display: inline-block;
    position: relative;
    top: -215px;
    left: 600px;
    margin-right: 60px;
    font-size: 30px;
    color: rgb(255, 255, 255);
    font-family: "HeliosExtBold", sans-serif;
}
nav li{
    margin-right: 200px;
    margin-top: 20px;
    margin-left: 200px;
    display: inline-block;
}
li a{
    color: aliceblue;
    text-decoration: none;
    font-family: "HeliosExtBold", sans-serif;
    cursor: pointer;
}
ul li{
  list-style-type: none;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
  background-color: #f5f5f5;
  padding: 0;
  width: 100%;
  font-family: "HeliosExtBold", sans-serif;
}
.image-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  margin-top: 90px;
  position: absolute;
}
.image-table td {
  border: 1px solid #ddd;
  padding: 5px;
  vertical-align: middle;
  text-align: center;
}
.image-table img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.image-table td:hover {
  background-color: #f0f8ff;
}

button {
  font-size: 17px;
  padding: 1em 2.7em;
  font-weight: 500;
  background: #1e3a63;
  color: white;
  border: none;
  position: relative;
  overflow: hidden;
  border-radius: 0.6em;
  cursor: pointer;
  top: 800px;
  left: 1650px;
  position: fixed;
}

.gradient {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 0.6em;
  margin-top: -0.25em;
  background-image: linear-gradient(
    rgb(64, 190, 64)
    rgb(64, 190, 64)
    rgb(64, 190, 64)
  );
}

.label {
  position: relative;
  top: -1px;
}

.transition {
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
  transition-duration: 500ms;
  background-color: rgb(99, 99, 99);
  border-radius: 9999px;
  width: 0;
  height: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

button:hover .transition {
  width: 14em;
  height: 14em;
}

button:active {
  transform: scale(0.97);
}