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

body {
    background-color: #efe8e2;
    background-image: url('back.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.content {
    margin: 5vh 5vw;
    height: fit-content;
    width: 90vw;
    max-width: 400px;
    padding: 20px;
    border-radius: 15px;
    background-color: #d1c6bc8e;
    box-shadow: 0 0 10px 0px #755f47;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.sobre {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    /* background-color: red; */
}

.arriba {
    height: 50%;
    width: 100%;
    background-color: #96836d;
    border: solid white 1px;
    border-radius: 15px;
}
.abajo {
    height: 50%;
    width: 100%;
    background-color: #96836d;
    border: solid white 1px;
    border-radius: 15px;
}

h1, p {
    color: white;
}

button {
    all: unset;
    font-size: 16px;
    padding: 10px 15px;
    border-radius: 10px;
    background-color: #ecb677;
    color: #59475c;
    font-weight: bold;
    border: solid 3px #cb904d;
    cursor: pointer;
    transition: all .3s ease;
    position: absolute;
    top: calc(50% - 20px);
    left: calc(50% - 55px);
}

button:hover {
    background-color: #e8b57b;
    border: solid 3px #c79255;
    color: #736076;
    box-shadow: 0 0 10px 0px #755f47;
}

.movear {
    transform: translateY(-100%);
    animation: arr 1s ease-out;
}

@keyframes arr {
    from {
        transform: translateY(-0px);
    }
    to {
        transform: translateY(-100%);
    }
}
.moveab {
    transform: translateY(100%);
    animation: abb 1s ease-out;
}

@keyframes abb {
    from {
        transform: translateY(-0px);
    }
    to {
        transform: translateY(100%);
    }
}

.txt {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}