
body {
    display: flex;
    background-color: rgb(125, 171, 179);
    flex-direction: column;
    align-items: center;
    font-family: Arial, Helvetica, sans-serif;
}

.index-body {
    align-items: stretch;
}

h1 {
    font-family: "Cormorant Garamond", serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.index-heading-container{
    display: flex;
    flex-direction: column;
    flex: auto;
    align-items: center;
}

.index-heading-container * {
    display: block;
    text-align: center;
}

.index-page .links {
    display: flex;
    flex: 1 0 auto;
    justify-content: space-around;
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: large;
    font-family: 'Lora', sans-serif;
    display: flex;
    justify-content: center;
    min-width: 100px;
}

p {
    font-size: large;
    text-align: center;
    max-width: 1500px;
}

a:hover {
    background: white;
    color: rgb(125, 171, 179);
    border-radius: 5px;
}

.image-container {
  width: 100%;
  height: 1000px;
  overflow: hidden;
  position: relative;
}

.image-container img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.price-tool {
    display: flex;
    flex-direction: column;
    border: 5px solid white;
    align-items: center;
    max-width: 500px;
    margin: auto;
    justify-content: center;
    padding: 10px;
}

#submitPrice {
    width: 200px;
    margin: 0 auto;
}

#quoteForm {
    display: flex;
    flex-direction: column;
    border: 5px solid white;
    padding: 10px;
    justify-content: center;
    margin: 20px;
}

#quoteForm div {
    padding: 10px;
}

#quote-to-price-link {
    display: inline;
    font-size: medium;

}

.text-or-call {
    display: flex;
    justify-content: center;
}

#text {
    margin-right: 10px;
}

#call-link {
    font-size: x-large;
    border: 2px solid white;
    margin-bottom: 25px;
}

.call-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1000px;
    margin-bottom: 50px;
    margin-top: 25px;
    text-align: center;
    border: 5px solid white;
}

.call-container a {
    width: 200px;
}
