html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: auto;
    color: #000000;
    background-color: #ffffff;
    box-sizing: border-box;
    font-family: "Open Sans", sans-serif;
}
p {
    margin: 1em 0;
}

.logo {
    text-align: center;
    padding: 50px 0 0 0;
}
p.wish {
    color: #dc3545;
    font-size: 16px;
    line-height: 1;
    text-align: center;
}
.form-wrap {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin: 40px 0 0 0;
}
.form-wrap input {
    height: 40px;
    border: 1px solid #ced4da;
    font-size: 16px;
    color: #000000;
    outline: none;
    padding: 0 15px;
    width: 400px;
}
.form-wrap button {
    font-family: "Open Sans", sans-serif;
    border: 2px solid #dc3545;
    height: 42px;
    background: #dc3545;
    color: #fff;
    font-size: 16px;
    padding: 0 15px;
    cursor: pointer;
}
.form-wrap button:hover {
    border: 2px solid #000000;
    background: #000000;
}
.poster-wrap {
}
.poster-wrap p {
    font-size: 16px;
    color: #333;
    text-align: center;
}
.poster-wrap .inner {
    margin: 30px auto 0 auto;
    display: table;
    position: relative;
}
.poster-wrap .inner img {
    max-width: 100%;
}
.poster-wrap .inner span.name {
    position: absolute;
    left: 50%;
    top: 250px;
    background: #00000054;
    color: #fff;
    font-size: 18px;
    min-height: 40px;
    line-height: 18px;
    padding: 0 30px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(-50%);
    border: 1px solid #525252;
}






footer {
    padding: 20px 0 30px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}
footer button {
    font-family: "Open Sans", sans-serif;
    width: 150px;
    color: #fff;
    background: #dc3545;
    height: 44px;
    text-align: center;
    border: 0;
    outline: none;
    cursor: pointer;
    font-size: 16px;
}
footer button:hover {
    background: #000000;
}


@media (max-width: 800px) {
    .poster-wrap .inner {
        width: 500px;
    }
    .form-wrap input {
        width: 300px;
    }
    .poster-wrap .inner span.name {
        top: 156px;
        font-size: 14px;
        min-height: 34px;
        line-height: 14px;
        padding: 0 30px;
        border-radius: 17px;
    }
}
@media (max-width: 500px) {
    .poster-wrap .inner {
        width: 400px;
    }
    .form-wrap input {
        width: 260px;
    }
    .poster-wrap .inner span.name {
        top: 125px;
        font-size: 13px;
        min-height: 25px;
        line-height: 13px;
        padding: 0 15px;
        border-radius: 12.5px;
    }
    .logo {
        padding-top: 30px;
    }
    .logo img {
        width: 200px;
    }
}