@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

* {
    font-family: Inter;
}

body {
    margin:0;
}

header {
    height: 15vh;
    position: absolute;
    top: 0;
    left: 0;
    right:0;
    padding: 0 20px 20px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width:auto;
}

footer {
    position: absolute;
    bottom: 0;left: 0;
    right:0;
    padding: 20px 20px 0 20px;
    display:flex;
    flex-direction: row;
    justify-content: space-between;
}

input {
    border: #04D484 solid 2px;
    padding:5px;
}

button {
    color: whitesmoke;
    font-weight: 700;
    font-size: 16px;
    background-color:#27D959;
    border: #27D959 solid 3px;
    border-radius: 15px 8px 8px 15px;
    height: inherit;
    width: 150px;
    margin-left:20px;
}

button:hover {
    background-color: #1eba4a;
    cursor: pointer;
}

.mobile-only {
    display: none;
}

.desktop-only {
    width:fit-content;
    margin: 15px auto;
}

#logo-header {
    max-height: 100%;
}

#logo-header img {
    height: auto;
    max-width: 12vh;
}

#main-image {
    left:0;
    height:50vh;
    width:100%;
    padding:0;
    margin-top:15vh;
}

#main-image img {
    padding:0;
    height: 100%;
    width: 100%;
    overflow: hidden;
    object-fit: cover;
}

#calculator-container {
    width:fit-content;
    margin: 20px auto;
    border: #27D959 solid 3px;
    border-radius: 15px;
    display: flex;
    flex-direction: row;
}

#calculator-container div {
    display: flex;
    flex-direction: row;
}

#calculator-container div div {
    align-items: center;
}

#calculator-container div div * {
    margin: 5px;
}

#distance {
    width: 50px;
}

#price-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

#price-container * {
    margin: 10px;
}

#price {
    font-size:20px;
    font-weight: 600;
}
#calculator-container .margin-right {
    margin-right:20px;
}