* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
*:not(i) {
    font-family: "Times New Roman", serif;
}
header {
    padding: 10px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
    background-color: #03350f;
    color: #ffffff;
}
.flex-container {
  display: flex;
  align-items: center;   
  gap: 15px;            
}
body {
    padding-top: 60px;
    background-color: #ffffff;
    color:#000000;
    padding-bottom: 60px;
}
.container {
    background-color: #03350f;
    width: 90vmin;
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    padding: 80px 50px;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(38, 33, 61, 0.2);
}
.search-box {
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.search-box input {
    padding: 5px;
    width: 70%;
    border: none;
    outline: none;
    border-bottom: 3px solid #012206;
    font-size: 16px;
}
.search-box button {
    padding: 15px 0;
    width: 25%;
    background-color: #5dc576;
    border: none;
    outline: none;
    color: #000000;
    border-radius: 5px;
}
.result {
    position: relative;
}
.result h3 {
    font-size: 30px;
    color: #ffffff;
}
.result .word {
    display: flex;
    justify-content: space-between;
    margin-top: 80px;
}
.result button {
    background-color: transparent;
    color: #03350f;
    border: none;
    outline: none;
    font-size: 18px;
}
.result .details {
    display: flex;
    gap: 10px;
    color: #b3b6d4;
    margin: 5px 0 20px 0;
    font-size: 14px;
}
.word-meaning {
    color: #ffffff
}
.word-example {
    color: #ffffff;
    font-style: italic;
    border-left: 5px solid #03350f;
    padding-left: 20px;
    margin-top: 30px;
}
footer {
    text-align: center;
    padding: 10px;
    background-color: #012206;
    color: #ffffff;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
}
button {
    background-color: #03350f;
    text-size-adjust: 20px;
    color: #ffffff;
    margin: 6px;
}
.error {
    margin-top: 80px;
    text-align: center;
}