* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    text-decoration: none;
}

:root {
    --main-bg-color: #B1C4C8;
}

section {
    width: 100%;
    height: 100%;
    background: url(https://images.pexels.com/photos/730564/pexels-photo-730564.jpeg?auto=compress&cs=tinysrgb&dpr=3&h=750&w=1260);
    background-position: center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    
}

h1 {
    padding: 20px;
}

input{
    height: 30px;
    border: none;
    border-radius: 3px;
    margin-bottom: 10px;
    box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
}

label {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    padding-bottom: 10px;
    text-align: center;
    
}

table{
    border-collapse: collapse;
    border-spacing: 0;
    background-color: white;
    margin: 50px 0px;
}
th, td{
    padding: 10px 20px;
    border: 1px solid #000;
    background-color: var(--main-bg-color);
    text-align: left;
}



#valorReal {
    text-align: center;
}

.main-container {
    width: 400px;
    height: 500px;
    background-color: var(--main-bg-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 50px;
    box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
}

.moeda1, .moeda2{
    width: 40%;
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.button {
    padding: 10px;
    border: none;
    background-color: chartreuse;
    border-radius: 5px;
    transition: 0.3s;
    margin: 10px;
    cursor: pointer;
    box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
}

.button:hover {
    transform: scale(1.05);
}

#resultado{
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    height: 50px;
    width: 80% ;
    background-color: white;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 10px;
    margin-top: 20px;
    box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
}


.image:hover {
    animation: mymove 5s infinite
  }
  
  @keyframes mymove {
    50% {transform: rotate(180deg);}
  }

  select {
    background: #FFF;
    border-radius: 3px;
    padding: 5px;
    box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
  }

  .contact-footer {
    width: 100%;
    height: 200px;
    background-color: var(--main-bg-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.social-icons {
    width: 300px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    
}

.icons {
    font-size: 1.3rem;
    color: black;
    text-decoration: none;
}


.icons:hover, .contact-footer a:hover {
    color: chartreuse;
    transition: ease-in-out;
    transform: scale(1.2);
}

icons:active, .contact-footer a:active {
    color: black;
}