*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body,html {
    font-family: "Poppins", sans-serif;
}

@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;
    }
}

/* LOGO SECTION  */
.logo{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4rem;
}

.logo img{
  width: 140px;
}

/* CONTENT SECTION */
.wrapper {
    text-align: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    animation: fadeIn 1000ms ease;
    -webkit-animation: fadeIn 1000ms ease;
}

h1 {
    font-size: 1.2rem;
    margin-bottom: 0;
    line-height: 1;
    font-weight: 700;
    color: #2B3990;
}

.dot {
    color: #00aeef;
}

p {
    text-align: center;
    margin-top: 2rem;
    font-family: "Muli", sans-serif;
    font-weight: normal;
    color: #2b3990;
    font-size: 0.8rem;
    letter-spacing: 4px;
}

.icons {
    position: absolute;
    inset: auto auto 4rem 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    gap: .2rem;
    font-weight: 200;

}
.icons a{
    display: flex;
    align-items: center;
    text-decoration: none;
    justify-content: center;
    color: #2B3990;
    font-weight: 200;
    font-size: .6rem;
}
.icons i {
    color: #2B3990;
    background: #fff;
    height: 40px;
    text-decoration: none;
    width: 40px;
    /* padding: 13px; */
    /* margin: 0 10px; */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    border: 2px solid #fff;
    transition: all 200ms ease;
    text-decoration: none;
    position: relative;
    font-weight: 200;

}

.icons i:hover,
.icons i:active {
    color: #00aeef;
    background: none;
    cursor: pointer !important;
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    text-decoration: none;
}
