* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  .bg {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-image: url('./background.jpg');
    width: 100%;
    height: 100vh;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }
  .tec {
    color: #4aa6f7;
  }
  .grid {
    
    display: grid;
    grid-template-columns: auto auto;
  }
  .card {
    margin: 10px;
    position: relative;
    font-family: 'Saira', sans-serif;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    width: 450px;
    height: 350px;
    border: 1px solid rgba(74, 166, 247, 0.5);
    backdrop-filter: blur(20px);
    border-radius: 60px;
    animation: slide 2s, fadeIn 2s;
  }
  .card-header {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    font-size: 30px;
    font-family: 'KoHo', sans-serif;
    width: 100%;
    height: 10%;
  }
  .card-body {
    font-weight: 100;
    display: flex;
    flex-direction: column;
    padding-top: 22px;
    align-items: center;
    height: 70%;
  }

  .images {
    width: 400px;
    border-radius: 30px;
  }
  .text {
    color: #4aa6f7;
    padding-top: 22px;
  }
 
  
  a {
    text-decoration: none;
    color: white;
  }
  .right {
    height: 100%;
    display: flex;
    align-items: center;
    order: 1;
  }
  .left {
    height: 100%;
    display: flex;
    align-items: center;
    order: -1;
  }
  .button-left {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-family: 'Saira', sans-serif;
    color: white;
    box-sizing: border-box;
    width: 246px;
    height: 100px;
    border: 1px solid rgba(74, 166, 247, 0.5);
    backdrop-filter: blur(20px);
  border-radius: 0px 60px 60px 0px;
  animation: slide 2s, fadeIn 2s;
  }
  .button-right {
    display: flex;
    align-items: center;
    justify-content: center;
  position: relative;
  font-family: 'Saira', sans-serif;
  color: white;
  box-sizing: border-box;
  width: 246px;
  height: 100px;
  border: 1px solid rgba(74, 166, 247, 0.5);
  backdrop-filter: blur(20px);
  border-radius: 60px 0px 0px 60px;
  animation: slide 2s, fadeIn 2s;
  }
  
  
  @keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
  }
  @keyframes slide {
      0% { top: -300px; }
      100% { top: 0; }
    }