@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&amp;family=Lobster&amp;family=Poppins:wght@400;500;600&amp;display=swap');
::-webkit-scrollbar{
    width: 10px;
    height: 5px;
}
::-webkit-scrollbar-thumb{
    background: rgb(255, 0, 98);
    border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover{
    background: rgb(0, 247, 255);
}
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family:'Poppins',sans-serif;
    text-decoration: none;
    list-style: none;
    outline: none; border:none;
    letter-spacing: 0!important;
}
body{
    font-family: 'Poppins', sans-serif;
    background: rgb(31, 30, 30);
}
.title {
    display: flex;
    color: #f2f0f3;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 30px;
    text-align: center;
    height: 100px;
    background: linear-gradient(to right, hsla(340, 84%, 48%, 0.788), rgb(31, 30, 30));
    align-items: center;
    justify-content: center;
}
span {
    margin-bottom: 15px;
    color: rgb(255, 20, 98);
}
.container {
    background: rgba(3, 3, 3, 0.685);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 0px;
    height: 550px;
    justify-content: center;
    gap: 15px;
}
.container input{
    padding: 1rem;
    margin: 1rem 0;
    background: #3333;
    color: rgb(0, 0, 0);
    text-transform: none;
    font-size: 1rem;
    text-align: center;
    width: 40%;

    position: relative;
    display: inline-block;
    padding: 10px 30px;
    background-color: rgb(37, 36, 36);
    color: #fff;
    font-weight: 400;
    letter-spacing: 1px;
    margin-top: 10px;
    text-decoration: none;
    font-size: .5cm;
}

.container .ImgBox img{
    width: 200px;
    height: 200px;
}
button {
    width: 350px;
    position: relative;
    display: inline-block;
    padding: 15px 50px;
    background-color: rgb(37, 36, 36);
    color: #fff;
    font-weight: 400;
    letter-spacing: 1px;
    margin-top: 10px;
    text-decoration: none;
    font-size: .5cm;
    cursor: pointer;
    border-radius: 15px;
}
button:hover{
    background-color: rgb(52, 52, 52);
}
footer{
    padding: 40px 0 30px 0;
    margin: auto;
    overflow: hidden;
    height: 35%;
}

.titulo {
    color: #f2f0f3;
    font-size: 30px;
    text-align: center;
    margin-bottom: 60px;
}

.contenedor-footer{
    display: flex;
    width: 90%;
    justify-content: space-evenly;
    margin: auto;
    padding-bottom: 50px;
    border-bottom: 1px solid #ccc;
}

.content-foo{
    text-align: center;
}

.content-foo h4{
    color: #fff;
    border-bottom: 3px solid #d3206b;
    padding-bottom: 5px;
    margin-bottom: 10px;
}
.content-foo a{
    color: #fff;
    font-size: 2ch;
    text-decoration: none;
}

.content-foo p{
    color: #ccc;
}

.titulo-final{
    text-align: center;
    font-size: 24px;
    margin: 20px 0 0 0;
    color: #9e9797;
}

@media screen and (max-width:500px){
    body {
        flex-direction: column;
        overflow: auto;
        height: auto;
    }
    .contenedor-footer{
        flex-direction: column;
        border: none;
    }

    .content-foo{
        margin-bottom: 20px;
        text-align: center;
    }

    .content-foo h4{
        border: none;
    }

    .content-foo p{
        color: #ccc;
        border-bottom: 1px solid #f2f2f2;
        padding-bottom: 20px;
    }

    .titulo-final{
        font-size: 20px;
    }
    .container input {
        width: 90%;
    }
    button {
        width: 90%;
    }
}