* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600&display=swap');

body {
    background-image: url(https://images.unsplash.com/photo-1604964432806-254d07c11f32?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2080&q=80);
    background-attachment: fixed;
    background-size: cover;
    background-position: top;
}

h1 {
    text-align: center;
    margin-top: 10px;
    margin-left: 10px;
    background-color: rgba(192, 192, 192, 0.6);
    width: 100%;
    max-width: 700px;
    height: 80px;
    padding-top: 15px;
    border-radius: 5px;
}

.contenedor {
    text-align: center;
    margin: 150px auto;
    width: 98%;
    max-width: 700px;
}

article {

    width: 100%;
    margin: 10px;
    padding: 15px;
    background-color: rgba(192, 192, 192, 0.6);
    border-radius: 5px;
}

p {
    line-height: 2em;
}

#parrafo {
    color: brown;
    background-color: white;
    line-height: 2em;
    font-weight: bolder;
    font-size: 1.5em;
    text-align: center;

}

table {
    margin: auto;
    border-collapse: collapse;
    background-color: #008F8C;
    color: white;
}

tr:nth-child(odd) {
    background-color: white;
    color: black;
}

tr,
th {
    height: 60px;
border: 1.5 solid #008F8C;
}

td{
    padding-top:  5px;
    padding-right: 5px;
    padding-left: 5px;
    text-align: center;

}

img {
    width: 60px;
}

input[type="file"] {
    background-color: #008F8C;
    padding: 5px;
    border-radius: 5px;
    color: white;
    cursor: pointer;
    margin-top: 5px;
}

#texto {
    padding: 3px 8px;
    border: none;
    border-radius: 5px;
    margin-top: 5px;
    line-height: 2em;
}

button {
    margin: 5px 3px;
    padding: 3px 8px;
    background-color: #008F8C;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    color: white;
    line-height: 2em;
    cursor: pointer;
}