@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;0,700;1,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,700;1,400&display=swap');

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
  color: #011b40;
}

.header-image {
  margin: 0 auto;
  width: 30%;
}

.header {
  height: 5rem;
  background-color: #14407f;
}

.footer-links {
  text-align: center;
}

.footer-links a {
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
}

.form-group button:hover {
  background-color: #e8e8e8;
}

.footer-links a:hover {
  text-decoration: underline;
}
#logo {
  width: 100%;
  position: absolute;
  top: 20px;
  left: 20px;
  width: 30vw;
  transition: transform 0.8s ease-in-out;
  transform: rotate(360deg);
}

#policies {
  margin-top: 4em;
}

.logo-spin {
  transition: transform 0.8s ease-in-out;
  transform: rotate(360deg);
}

.menu {
  color: white;
  display: flex;
  position: absolute;
  top: 2vw;
  right: 30px;
  animation: fadein 4s;
  /* posit */
}

.menu ul li {
  display: inline-block;
  padding: 5px;
}

.menu ul li:hover {
  background-color: #0055d4;
}

.menu a,
.menu a:hover,
.menu a:active {
  text-decoration: none;
  color: white;
}

.img-round {
  border-radius: 2%;
  box-shadow: 25px 25px 50px 0 #0055d4 inset, -25px -25px 50px 0 #0055d4 inset;
  /* box-shadow: inset 0 0 10px #000000; */
  /* box-shadow: 0 3px 10px rgb(0 0 0 / 0.2); */
}

.intro {
  line-height: 1.6;
  width: 68%;
  margin-left: auto;
  margin-top: 8rem;
  margin-bottom: 7rem;
  padding-right: 50px;
  animation: fadein 4s;
  font-weight: bold;
  font-size: 1.2rem;
  color: #00317a;
}

@media only screen and (max-width: 800px) {
  .intro {
    width: 70%;
    margin-top: 6rem;
    margin-bottom: 2rem;
    font-size: 1rem;
  }
}

@media only screen and (max-width: 420px) {
  .intro {
    width: 90%;
    margin-top: 4rem;
    margin-bottom: 2rem;
    font-size: 1rem;
  }
}

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

#products {
  background-color: #14407f;
  margin-top: 2rem;
  color: white;
}

#products .row {
  color: #eaf2ff;
}

#contact {
  background-color: #ffffff;
  /* margin-top: 60px; */
}

footer {
  background-color: #14407f;
  /* margin-top: 60px; */
  color: white;
}

.product-container {
  display: block;
  margin-top: 100px;
}

.product-one img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 50%;
}

.product-one {
  display: block;
  border: 1px solid grey;
  width: 60vw;
  height: 200px;
  margin-left: 20vw;
  /* background-image: url('../img/products/pretzels.jpg'); */
  /* background-position: center; */
  /* border-radius: 50%; */
}

.product-two img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 50%;
}

.product-two {
  display: flex;
  justify-content: flex-end;
  border: 1px solid grey;
  height: 200px;
  margin-left: 10vw;
  /* background-image: url('../img/products/pretzels.jpg'); */
  /* background-position: center; */
  /* border-radius: 50%; */
}
