:root{
    --dark-blue-color:#00091b;
    --white-color:#fff;
    --primary-color:#63FF81;
}
@font-face {
    font-family: 'sourGummy';
    src: url(../fonts/SourGummy.ttf) format('truetype') ,
         url(../fonts/SourGummy.woff) format('woff');
}
* {
    margin:0;
    padding:0;
    box-sizing: border-box;
}
body {
    background: var(--dark-blue-color);
    color: var(--white-color);
    font-family: 'sourGummy';
} 
.wrapper {
    width:100%;
    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;
}
@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 img{
    max-width: 35%;
    height: auto;
}
.wrapper h1 {
    font-size: 50px;
    margin:10px 0;
    line-height: 1;
    font-weight: 700;
}

.wrapper .dot {
    color: var(--primary-color);
}

.wrapper p {
    text-align: center;
    margin: 18px;
    font-weight: normal;
    font-size: 20px;
}

.wrapper .icons {
    text-align: center;
    margin-top:15px;
}
.wrapper .icons a{
    color:var(--dark-blue-color);
}
.wrapper .icons img { 
    background:var(--white-color);
    height: 50px;
    width: 50px;
    padding: 13px;
    font-size: 18px;
    margin: 0 10px;
    border-radius: 50px;
    border: 2px solid var(--white-color);
    transition: all 200ms ease;
    text-decoration: none;
    position: relative;
}

.wrapper .icons img:hover,
.wrapper .icons img:active {
    color: var(--primary-color);
    border-color:var(--primary-color);
    background-color:var(--primary-color);
    cursor: pointer !important;
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    text-decoration: none;
}   
@media screen and (min-width:267px) and (max-width:399px) {
    .wrapper h1 {
        font-size: 25px;
    }
    .wrapper p {
        font-size: 14px;
    }
    .wrapper .icons img { 
        height: 19px;
        width: 19px;
        padding: 4px;
    }
    .wrapper img{
        max-width: 55%;
        height: auto;
    }
}

@media screen and (min-width:400px) and (max-width:768px) {
    .wrapper h1 {
        font-size: 33px;
    }
    .wrapper p {
        font-size: 17px;
    }
    .wrapper .icons img { 
        height: 30px;
        width: 30px;
        padding: 5px;
    }
    .wrapper img{
        max-width: 45%;
        height: auto;
    }
}

@media screen and (min-width:769px) and (max-width:992px) {
    .wrapper h1 {
        font-size: 44px;
    }
    .wrapper p {
        font-size: 20px;
    }
    .wrapper .icons img { 
        height: 35px;
        width: 35px;
        padding: 7px;
    }
    .wrapper img{
        max-width: 55%;
        height: auto;
    }
}

@media screen and (min-width:993px) and (max-width:1200px) {
    .wrapper h1 {
        font-size: 55px;
    }
    .wrapper p {
        font-size: 30px;
    }
    .wrapper .icons img { 
        height: 45px;
        width: 45px;
        padding: 12px;
    }
    .wrapper img{
        max-width: 57%;
        height: auto;
    }
}

@media screen and (min-width:1201px) and (max-width:9000px) {
    .wrapper h1 {
        font-size: 65px;
    }
    .wrapper p {
        font-size: 40px;
    }
    .wrapper .icons img { 
        height: 50px;
        width: 50px;
        padding: 15px;
    }
    .wrapper img{
        max-width: 70%;
        height: auto;
    }
}