@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: #EEF1F0;
}

main {
    min-height: 100vh;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

main {
    background: linear-gradient(rgba(0, 0, 0, 0.808), rgba(0, 0, 0, 0)), url('../img/FONDO.jpg');
    background-position: top right;
    background-repeat: no-repeat;
    background-size: cover;
}

.container {
    max-width: 900px;
    margin: 0 auto;

    margin-bottom: 0;

}

.logo {
    display: block;
    background: #0F0D0E;
    border-bottom: 2px solid #14131C;
    width: 100%;
}

.logo img {
    width: 100%;
    max-height: 200px;
    object-fit: contain;
}

.con {
    padding: 20px 15px;
    line-height: 1;
    padding-bottom: 0;
}

.titel {
    font-size: 60px;
    color: #fff;
    text-align: center;
}

.middleTitel {
    font-size: 35px;
    color: #fff;
    text-align: center;
    margin-top: 30px;
}

.social {
    display: flex;
    align-items: center;
    max-width: 500px;
    margin: 0 auto;
    margin-top: 25px;

}

.social img {
    width: 70px;
    display: block;
    margin-right: 10px;
}

.social a {
    color: #fff;
    font-size: 35px;
    text-decoration: none;
    font-weight: 400;
}

.bldr a {
    font-weight: 600;
}

.button {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    margin-top: 30px;
    border-radius: 2px;
    transition: .2s ease;
    border-radius: 4px;
}

.button img {
    width: 80px;
}

.button:hover {
    transform: scale(1.1);
}

.text-center {
    text-align: center;
}

.footer {
    display: block;
    margin-top: 40px;
    line-height: 0;
    width: 100%;
    background: #000;
}

.footer img {
    width: 100%;
    max-width: 700px;
    display: block;
    margin: 0 auto;
}

.d-flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.center {
    justify-content: center;
}

.col {
    width: 48%;
    margin-top: 30px;
}

@media screen and (max-width:576px) {
    .col {
        width: 100%;
    }

    .titel {
        font-size: 36px;
    }

    .social a {
        font-size: 20px;
    }

    .button {
        font-size: 24px;
    }
}