body {
    background: #222;
    font-family: "Helvetica Neue", "Helvetica", Arial, "Lucida Grande", sans-serif;
}
h3 {
    font-size: 2em;
    font-weight: 100;
    text-shadow: 0px 0px 20px #E31226;
    color: #E31226;
    display: block;
}
.container {
    max-width: 100%;
    font-size: 16px;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    position: absolute;
    color: #fff;
    text-align: center;
}
.logo {
    max-width: 75%;
    
}
.bar {
    height: 0.3em;
    width: 50%;
    border-radius: 10px;
    background: transparent;
    box-shadow: inset 0px 0px 8px rgba(50, 50, 50, 1);
    overflow: hidden;
    padding: 5px;
    position: relative;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.progress {
    height: inherit;
    border-radius: inherit;
    width: 0;
    background: #E31226;
    animation: load 3s linear infinite;
    animation-delay: 2s;
}
@keyframes load {
    0% {
        width: 0%;
   }
    50% {
        width: 100%;
   }
    100% {
        width: 0%;
        float: right;
   }
}
.socials {
    display: block;
    margin-top: 50px;
}
.socials img {
    width: 75px;
    margin: 0 50px;
}

.mail {
    margin-top: 20px;
    text-decoration: none;
}

.mail a{
    text-decoration: none;
    color: #E31226;
    font-size: 40px;
}



@media only screen and (max-width: 830px) {
    .container {
        width: 75%;
    
    }
    h3 {
        font-size: 5vw;
    }
}

@media only screen and (max-width: 595px) {
    .container {
        width: 100%;
    
    }
    h3 {
        font-size: 6vw;
    }
    .logo {
        max-width: 100%;
        
    }
    .socials img {
        width: 50px;
        margin: 0 25px;
    }
    .mail a{
        text-decoration: none;
        color: #E31226;
        font-size: 30px;
    }
    
}

@media only screen and (max-width: 225px) {
    .container {
        width: 100%;
    
    }
    h3 {
        font-size: 6vw;
    }
    .socials img {
        width: 35px;
        margin: 0 10px;
    }
    .mail a{
        text-decoration: none;
        color: #E31226;
        font-size: 20px;
    }
}