html,
body {
    text-align: center;
    background-color: black;
    font-family: Inter;
}

main {
    margin: 20px auto;
    width: 600px;
}

.border {
    border-radius: 5px;
}

.addColor {
    color: #fff;
}

.addBackground {
    background-color: #fff;
}

header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    /* background: #6943FF; */
    background: linear-gradient(#e66, #919);
    padding: 30px 0 50px 0;
    user-select: none;
}

input {
    text-align: center;
    background-color: transparent;
    border: 2px solid #919;
    font-weight: 800;
    font-size: 58px;
    width: 100px;
    margin-bottom: 20px;
}

/* input placeholder color */
::placeholder {
    color: #fff;
    background-color: transparent;
}

button {
    padding: 10px 20px;
    justify-content: center;
    border: none;
}

button:hover {
    color: #fff;
    background-color: #340B5E;
    font-weight: 600;
}

.conversions {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px 15px 0 15px;
    color: #5A537B;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    background-color: #E5E7EB;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
}

.measurements {
    background-color: #FFFFFF;
    padding: 30px;
    margin-bottom: 20px;
    flex-shrink: 1;
}

p {
    color: #5A537B;
    font-size: 15px;
    font-weight: 400;
}
