*{
	box-sizing: border-box;
	font-family: 'Segoe UI', Roboto, system-ui, sans-serif;
}
#container{
	max-width: 100%;
	min-width:500px ;
	margin: 0 auto;
	position: relative;
}

#header{
	width: 500px;
	margin-left: 500px;
}

#menu{
	background-color:rgba(137, 143, 139, 0.6 ) ;
	width: 230px;
	position: fixed
}

#main{
	background-color:rgba(137, 143, 139, 0.6) ;
	padding: 1%;
	border-radius: 32px;
	margin-left: 250px;
	margin-bottom: 30px;
}

#footer{
	
}

.input-panel {
	background-color: rgba(137, 143, 139, 0.6) ;
	padding: 1%;
	border-radius: 32px;
	margin-left: 250px;
	margin-bottom: 30px;
}

.input-field {
    border-radius: 20px;
    padding: 8px 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
	min-width: 300px;
}

.result-area {
    background: #1b3d4b;
    padding: 1%;
    border-radius: 32px;
    margin-left: 250px;

}
.result-title {
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    margin-bottom: 16px;
    color: #bcddEE;
}
.result-values {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 28px;
    justify-content: space-between;
}
.result-item {
    background: #2d5468;
    border-radius: 30px;
    padding: 10px 22px;
    font-size: 1.3rem;
    font-weight: 600;
    flex: 1 1 auto;
    min-width: 300px;
    color: #f0f9ff;
	margin-bottom: 16px;
}
.result-item small {
    font-weight: 300;
    font-size: 0.8rem;
    display: block;
    color: #bed9ec;
}
.warning {
    background: #fae3b9;
    color: #4b3a1e;
    padding: 10px 20px;
    border-radius: 60px;
    font-size: 0.95rem;
    margin-left: 250px;
    margin-top: 15px;
}

body {
	color: #;
	background-image:url("../images/background.png") ;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-attachment: fixed;
	background-size: cover;
}

img {
	width: 150px;
	height: 150px;
}

a:link {
	color: black; 
  	background-color: transparent; 
  	text-decoration: none;
}

a:visited {
  	color: black;
  	background-color: transparent;
  	text-decoration: none;
}

a:hover {
  	color: black;
  	background-color: transparent;
  	text-decoration: underline;
}

a:active {
  	color: black;
  	background-color: transparent;
  	text-decoration: none;
}

button {
    border: none;
    background: #808080;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 16px 28px;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.2s;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #FFFFFF;
}
button:hover {
    background: #1f637e;
    transform: scale(1.02);
}
button:active {
    transform: scale(0.98);
}
