Result Skip Results Iframe
EDIT ON
/* Dark theme colors */

/* Primary theme colors */
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}
.icons a{
text-decoration:none;
}
@keyframes fadeIn {
  from {top: 20%; opacity: 0;}
  to {top: 100; opacity: 1;}
}

@-webkit-keyframes fadeIn {
  from {top: 20%; opacity: 0;}
  to {top: 100; opacity: 1;}
}

.wrapper {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  animation: fadeIn 1000ms ease;
  -webkit-animation: fadeIn 1000ms ease;
  
}
.dot {
  font-size: 64px;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 0;
  line-height: 1;
  font-weight: 700;
}

.main-logo {
   display: flex;
    justify-content: center;
}

.Para {
  margin-bottom: 30px;
  text-align: center;
  margin: 18px;
  font-family: 'Muli', sans-serif;
  font-weight: normal;
}

.icons {
  text-align: center;
  padding: 20px;
}

.heading {
    font-size: 32px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    color: #FC8019;
}

.icon {
    height: 50px;
    width:50px;
}

.icons i {
  color: #FC8019;
  background: #FFB27D ;
  padding: 13px;
  margin: 0 10px;
  border-radius: 50px;
  border: 2px solid transparent;
  transition: all 200ms ease;
  text-decoration: none;
  position: relative;
}

.icons i:hover, .icons i:active {
  color: #FFB27D;
  background: none;
  border-color: #FC8019;
  cursor: pointer !important;
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
  text-decoration: none;
}

.logo {
    height: 120px;
    width: 120px;
    display: grid;
    grid-template-rows: 1fr;
    justify-content: center;
}