*   {
    box-sizing: border-box;
}

html {
    margin:0;
    height:100%;
}

body {
    margin:0;
    height: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.container {
    display: grid;
    background-color: #010a26;
    font-size: 12px;
    border-radius: 16px;
    row-gap: 20px;
    grid-template-columns: 710px;
    grid-template-rows: 75px auto;
    grid-template-areas: 'title'
                         'sim';
    margin: auto;
    padding:20px;
    height: 590px;
    width: 750px;
    overflow: hidden;
}

#title{
    grid-area: title;
    margin: auto;
    text-align: center;
    width:100%;
}

#titlename{
    color: #1ca2e4ff;
    margin: 0;
    font-size: 32px;
    border-radius: 16px;
    line-height: 75px;
    height: 75px;
    background-color: #010a26ff;
    border-color: #1ca2e4ff;
    border-style: solid;
    border-width: 1px;
}

#sim{
    background-image: url(../img/EarthBackground.png);
    border-radius: 16px;
}

#value{
    width: 40px;
}

#const1{
    position: absolute;
    border: none;
    padding: 0;
    margin: 0;
    top: 230px;
    left: 155px;
}

#const2{
    position: absolute;
    border: none;
    padding: 0;
    margin: 0;
    top: 275px;
    left: 155px;
}

#const3{
    position: absolute;
    border: none;
    padding: 0;
    margin: 0;
    top: 365px;
    left: 615px;
}

img{
    position: absolute;
}

p{
    position: absolute;
}

input{
    width: 60px;
    text-align: center;
    float: center;
}

#helplink{
    position: absolute;
    bottom: 5px;
    right: 20px;
    color: #f38609ff;
}

#helplink:hover{
    color: #1ca2e499;
}