html, body {
    margin: 0;
    text-align: center;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #4D0D05;
    background-color: #E8C5AE;
}

header {
    background-color:#F0FCFC;
    padding: 16px;
    color: #317F7A;
    border-radius: 56px;
    margin: 12px 96px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
}

h1 {
    font-family: 'Dancing Script', cursive;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-size: 64px;
}

h3 {
    font-family: "Julius Sans One", sans-serif;
    font-weight: 700;
    font-style: normal;
    color: #cf7b6f;
    font-size: 20px;
}

.barraDeBusca {
    padding: 24px;
    margin: 0 20%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.barraDeBusca input {
    border-radius: 16px;
    padding: 12px 16px;
    width: 100%;
    border: 1px solid #4D0D0500;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.barraDeBusca input:focus-visible {
    outline: 0;
    border: 1px solid #4D0D05;
}

.barraDeBusca button {
    padding: 12px 24px;
    border-radius: 16px;
    border-style: none;
    background-color: #4D0D05;
    color:#EDDFDD;
    font-size: 13px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 8px;
}

.barraDeBusca button:hover {
    background-color: #a7655c;
}

.item-resultado {
    background-color: #EDDFDD;
    color: #4D0D05;
    margin: 24px 96px;
    padding: 4px 24px;
    border-radius: 24px;
    text-align: justify;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.imagem-resultado {
    padding: 24px 12px;
}

.imagem-resultado img{
    border:2px dotted #4D0D05;
    width: 240px;
    margin-right: 24px;
    border-radius: 8px;
}

.texto-resultado h2 {
    text-align: left;
    
}

.texto-resultado {
    flex: 1;
}

.item-resultado a {
    font-weight: bold;
    color: #4D0D05;
    text-decoration: none;
    padding-left: 4px;
    font-size: 14px;
}

.item-resultado a:hover {
    color: #c27e75;
}

footer {
    background-color: #4D0D0595;
    padding: 16px;
    color: white;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    font-size: 12px;
    margin: 0;
    align-items: center;
    justify-content: center;
    display: flex;
}

footer img {
    width: 16px;
    margin: 0 4px;
    filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(130deg) brightness(100%) contrast(100%);
}

footer a:visited {
    color: white;
}