* {
  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;
}
.photo {
  width: 260px;
}
.card {
    position: relative;
  font-family: 'Saira', sans-serif;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  width: 460px;
  height: 710px;
  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: 56px;
  align-items: center;
  height: 70%;
}
.card-footer {
  align-items: center;
  height: 20%;
}
.text {
  color: #4aa6f7;
  padding-top: 33px;
}
.card-footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

a {
  text-decoration: none;
  color: white;
}

.button-left {
  order: -1;
  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 {
  order: 1;
  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; }
  }