@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap');
html,body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
#gradient-canvas {
  width: 100%;
  height: 100%;
  --gradient-color-1: #e3c230; 
  --gradient-color-2: #e3921d; 
  --gradient-color-3: #e37510;  
  --gradient-color-4: #e35a04;
  z-index: -1;
  position: fixed;
}
h1 {
    font-weight: 600;
    color: #050505;
    font-size: 50px;
}
a {
    font-weight: 500;
    color: #050505;
    text-decoration: none;
    font-size: 30px;
}
.flex-container {
  padding-top: 4%;
  margin: 0;
  list-style: none;
  
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  
  -webkit-flex-flow: row wrap;
  justify-content: space-around;
}

.flex-item {
  background: none;
  padding: 25px;
  width: 200px;
  height: 150px;
  margin-top: 10px;
  
  line-height: 150px;
  color: white;
  font-weight: bold;
  font-size: 3em;
  text-align: center;
}

.elsi {
    background: rgb(173,0,255);
    background: linear-gradient(to right, #ad00ff 0%, #fd00f3 100%);
    padding: 25px;
    width: 200px;
    height: 150px;
    margin-top: 10px;
    transition: 0.5s;
    background-size: 200% auto;
    line-height: 150px;
    display: block;
    border-radius: 15px;
}    

.elsi:hover{
    background-position: right center;
}

.sealzi {
    background: rgb(79,206,213);
    background: linear-gradient(to right, #4fced5 0%, #14ade3 100%);
    padding: 25px;
    width: 200px;
    height: 150px;
    margin-top: 10px;
    transition: 0.5s;
    background-size: 200% auto;
    line-height: 150px;
    display: block;
    border-radius: 15px;
}
.sealzi:hover {
  background-position: right center;
}


@media (max-width: 500px) {
    html,body {
        overflow: visible;
    }
    h1 {
        font-size: 35px;
        margin: 5%;
    }
    .flex-container {
        padding: 5% 0 20% 0;
    }
}