* {
    margin: 0;
    border: 0;
    padding: 0;
    box-sizing: 0;
}

body {
    font-family: 'Roboto', sans-serif;
}

.contenedor {
    background-image: url(../img/bg.svg);
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100vh;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
}

h1 {
    color: transparent;
}

.btn {
    background: #D14F4F;
    background: linear-gradient(90deg, #EE7F6C 0%, #D14F4F 80%);
    border-radius: 32px;
    padding: 15px 40px;
    color: #fff;
}

.btn:hover {
    background: #D14F4F;
}

a {
    text-decoration: none;
}

main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

main img {
    max-width: 50%;
}

footer {
    background:rgba(255, 255, 255, .8);
    color: #999999;
    padding: 20px;
    width: 100%;
}