﻿body {
    background-color: white;
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: Roboto Medium;
}
.large-text {
    font-size: 300px;
    font-weight: bold;
    color: red;
 
}
.message-box {
    height: 200px;
    width: 380px;
    position: absolute;
    top: 50%;
    left: 40%;
    margin-top: -100px;
    margin-left: 50px;
    color: grey;
    font-weight: 300;
}

    .message-box h1 {
        font-size: 60px;
        line-height: 46px;
        margin-bottom: 40px;
    }

.buttons-con .action-link-wrap {
    margin-top: 40px;
}

    .buttons-con .action-link-wrap a {
        background: #662382;
        padding: 8px 25px;
        border-radius: 4px;
        color: #fff;
        font-weight: bold;
        font-size: 14px;
        -webkit-transition: all 0.3s linear;
        transition: all 0.3s linear;
        cursor: pointer;
        text-decoration: none;
        margin-right: 10px
    }

        .buttons-con .action-link-wrap a:hover {
            background: grey;
            color: #662382;
        }

#Polygon-1, #Polygon-2, #Polygon-3, #Polygon-4, #Polygon-4, #Polygon-5 {
    -webkit-animation: float 1s infinite ease-in-out alternate;
    animation: float 1s infinite ease-in-out alternate;
    position: absolute;
    top: 49px;
    left: 222px;
}

#Polygon-2 {
    -webkit-animation-delay: .2s;
    animation-delay: .2s;
    left: 200px;
    top: 200px;
}

#Polygon-3 {
    -webkit-animation-delay: .4s;
    animation-delay: .4s;
    left: 50px;
    top: 50px;
}

#Polygon-4 {
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
    top: 377px;
    right: 150px;
}

    #Polygon-4 img {
        float: right;
    }

#Polygon-5 {
    -webkit-animation-delay: .8s;
    animation-delay: .8s;
    top: 250px;
    left: 42px;
}

@-webkit-keyframes float {
    100% {
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }
}

@keyframes float {
    100% {
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }
}
