﻿@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed:400,400i,700,700i');

html, body {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    font-family: 'Roboto Condensed', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Pacifico', cursive;
    font-weight: normal;
}

.wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: #ffffff;
}

.container {
    text-align: center;
    padding: 15px;
    max-width: 600px;
}

.logoContainer {
    position: relative;
    width: 100%;
    margin-bottom: 50px;
    box-sizing: border-box;
}

    .logoContainer .logo {
        position: absolute;
        bottom: 0;
        left: 0;
        z-index: 1;
        transform: rotate(0deg);
        transition: 1000ms ease-in-out transform;
        width: 22%;
    }

    .logoContainer:hover .logo {
        transform: rotate(360deg);
    }

    .logoContainer .logoText {
        position: relative;
        z-index: 2;
        width: 100%;
    }

.infoBox {
    margin: 10px 0;
    background: #eaeaea;
    text-align: left;
    border-radius: 25px;
    height: 50px;
}

    .infoBox i {
        margin-right: 10px;
        background: #909090;
        border-radius: 50%;
        color: #fff;
        font-size: 30px;
        width: 50px;
        height: 50px;
        text-align: center;
        box-sizing: border-box;
        line-height: 50px;
    }

    .infoBox span {
        color: #000;
        line-height: 50px;
        display: inline-block;
        vertical-align: top;
    }

        .infoBox span a {
            color: #000;
            text-decoration: none;
        }