*
{
    padding: 0;
    margin: 0 auto 0 auto;
    text-align: left;
    outline: none;
    border: 0;
    border-spacing: 0;
    text-decoration: none;
    font-size: 100%;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    color: #ffffff;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: auto;
}

@media \0screen, screen\9
{
    transition: all 0s !important;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none)
{
    transition: all 0s !important;
}

html
{
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    height: 100vh;
    background-color: #734892;
    background-color: rgba(115, 72, 146, 1);
    background: url('../img/background.jpg') no-repeat center center;
    background-size: cover;
    box-shadow: inset 0px 0px 500px rgba(0, 0, 0, 0.35);
}

body
{
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

header,
.header
{
    width: 100%;
}

footer,
.footer
{
    width: 100%;
}

main,
.main
{
    width: 100%;
    padding: 0;
}

main section,
.main section
{
    width: 100%;
}

.center
{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    width: auto;
}

.center h1
{
    text-align: center;
    font-size: 225%;
    font-weight: 700;
    color: #ffffff;
    color: rgba(255, 255, 255, 1);
    line-height: 30px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.15);
    display: none;
}

.center a.logo
{
    max-width: 200px;
    display: block;
    margin-bottom: 30px;
    text-align: center;
}

.center a.logo img
{
    width: 100%;
    display: block;
    text-align: center;
    -webkit-animation: logoAnimation 0.5s;
    animation: logoAnimation 0.5s;
}

@-webkit-keyframes logoAnimation
{
    0%
    {
        -webkit-transform: scale(0.1);
    }
    100%
    {
        -webkit-transform: scale(1);
    }
}

@keyframes logoAnimation
{
    0%
    {
        transform: scale(0.1);
    }
    100%
    {
        transform: scale(1);
    }
}

.center p.social
{
    font-size: 100%;
    text-align: center;
    margin-top: 10px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.15);
    display: block;
}

.center p.social::after
{
    content: '';
    display: block;
    clear: both;
}

.center p.social.insta
{
    margin-top: 30px;
}

.center p.social a
{
    font-size: 100%;
    text-align: center;
    display: inline-block;
}

.center p.social a i,
.center p.social a em
{
    font-size: 200%;
    display: inline-block;
    float: left;
    line-height: 40px;
    margin-right: 10px;
}

.center p.social a strong
{
    font-size: 137.5%;
    display: inline-block;
    float: right;
    line-height: 40px;
}

.center p.social:hover a i,
.center p.social:hover a em,
.center p.social:hover a strong
{
    color: #cf8cff;
    color: rgba(207, 140, 255, 1);
}

.transition
{
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}
.transition-in *
{
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.transition-before::before
{
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.transition-after::after
{
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.clear
{
    visibility: hidden;
  	display: block;
  	content: "";
  	clear: both;
  	height: 0;
}

.clear-after::after
{
    visibility: hidden;
  	display: block;
  	content: "";
  	clear: both;
  	height: 0;
}

@media (max-width: 480px)
{
    .center
    {
        width: 100%;
    }
    
    .center h1
    {
        font-size: 175%;
    }
    
    .center p.instagram
    {
        font-size: 93.75%;
    }
}