* {
    margin: 0;
    padding: 0;
}

html, body {
    width: 100%;
    height: auto;
    font-family: 'Montserrat', sans-serif;
    background-color: #111;
}

.main {
    width: 100%;
    height: auto;
    text-align: center;
}

.main h1 {
    font-size: 72px;
    font-weight: bold;
    line-height: 1.25;
    margin-bottom: 80px;
    color: white;
}

.main p{
    font-size: 36px;
    font-weight: bold;
    line-height: 1.25;
    margin-top: 60px;
    margin-bottom: 30px;
    color: white;
}

.main a{
    display: inline-block;
    vertical-align: middle;
    padding-left: 50px;
    padding-right: 50px;
    text-decoration: none;
    opacity: 0.7;
    transition: 0.25s;
}

.main a p{
    margin-top: 10px;
    color: white;
    font-size: 34px;
    opacity: 0;
    transition: 0.25s;
}

#info {
    font-size: 40px;
    font-weight: 400;
    line-height: 1.1;
    margin-top: 1px;
    margin-bottom: 1px;
    color: white;
}

progress {
    margin-top: 14px;
    width: 100%;
    height: 50px;
    background-color: #ddd;
    border-radius: 25px;
}
progress::-webkit-progress-bar {
    background-color: #444;
    border-radius: 25px;
}
progress::-webkit-progress-value {
    background-color: red;
    border-radius: 25px;
}

.main1 {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
}
.main_left {
    width: 32%;
}

.main_left h3{
    font-size: 24px;
    color: white;
    margin-top: -40px;
    text-align: center;
}

.main_right {
    width: 20%;
    text-align: right;
}

.main_right img{
    width: 250px;
    height: auto;
}

.main a:hover{
    opacity: 1;
    transition: 0.25s;
}

.main a:hover p{
    opacity: 1;
    transition: 0.25s;
}

.main a img{
    width: 200px;
    height: auto;
}
.main a img.run {
    width: 340px;
    height: auto;
}


footer {
    position: fixed;
    background-color: rgba(255,255,255,0.3);
    left: 0;
    bottom: 0;
    width: 100%;
    font-weight: bold;
    font-size: 30px;
    line-height: 1.5;
    padding-top: 40px;
    padding-bottom: 40px;
    color: white;
}

.footer_main{
    text-align: center;
    display: flex;
}

.footer_left {
    display: flex;
    margin-left: auto;
    margin-right: auto;
    justify-content: right;
    width: 25%;
}

.footer_left a{
    margin-left: 16px;
    margin-right: 16px;
    opacity: 0.75;
    transition: 0.2s;
}
.footer_left a:hover{
    opacity: 1;
    transition: 0.2s;
}
.footer_left a img{
    width: 120px;
    height: auto;
}

footer .footer_right {
    display: block;
    justify-content: left;
    text-align: center;
    width: 75%;
}