body {
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    font-family: 'Courier New', Courier, monospace;
}

.main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: #f2f4f5;
}

.central-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 20%;
    min-width: 250px;
    height: fit-content;
    border-radius: 8px;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.12);
    background-color: #fff;
    padding: 0px 10px;
    box-sizing: border-box;
}

.container-body {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0 auto;
}

.container-body h1{
    font-size: 24px;
    color: #004cf1;
    font-weight: bolder;
    text-align: left;
    margin-bottom: 0px;
}

.container-body p{
    font-size: 14px;
    color: rgb(17, 17, 17);
    font-weight: bolder;
    text-align: left;
}

.card-image {
    width: 100%;
    border-radius: 8px;
}

.overflow-top{
    margin-top: -40px;
}

.material-textfield input {
    width: 100%;
    height: 40px;
    padding: 5px;
    font-size: 18px;
    line-height: 40px;
    text-align: left;
    background-color: #e0ebe6;
    border-radius: 4px;
    border: 1px solid #82b5dc;
    outline: 0px;
    text-decoration: none;
    color: black;
    box-sizing: border-box;
}

.buscar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 40px;
    margin: 5px auto;
    font-size: 24px;
    background-color: #39e493;
    border-radius: 4px;
    border: 0px;
    outline: 0px;
    text-decoration: none;
    color: white;
    cursor: pointer;
}