@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #044365;
    background-image: linear-gradient(-180deg, rgba(255,255,255,0.50) 0%, rgba(0,0,0,0.50) 100%);
    background-blend-mode: lighten;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    height: 100vh;
}

.main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.main > h1 {
    font-size: 50px;
    margin-bottom: 20px;
    text-shadow: 2px 2px rgb(255, 255, 255);
    font-weight: bold;
}

.container {
    display: flex;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    width: 900px;
    border-radius: 10px;
    background-image: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 30px !important;
}


.calculator, .result {
    display: flex;
    justify-content: space-around;
    flex-direction: column;
    padding: 20px;
}

.result table {
    align-self: center;
    font-size: 20px;
    width: 300px;
}

.result tr:nth-child(even) {
  background-color: #a5b7ca;
}

.result tr:nth-child(odd) {
  background-color: #6186a2;
}

.result table, th, td {
  border: 2px solid white;
  border-collapse: collapse;
}

.result th, td {
  padding: 5px;
}

.result th, td {
  border-color: #eab71f;
}