@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


html,
body,
ul,
ol,
p,
h1 {
  margin:  0;
  padding: 0;
}

:root {
  --bg: #F6F9FF;
  --malt-bg: #FD5757;
  --text-color: #111;
}


body {
  background-color: var(--bg);
  font-family: "Montserrat", sans-serif;
  overflow-x: hidden;
}

.container {
  width: 100%;
  display: flex; 
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 3rem;
  padding: 0 1em;
  color: var(--text-color);
  box-sizing: border-box;
}

header {
  width: 100%;
  display: flex; 
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 3em;
  row-gap: 3em;
}

header img {
  width: 200px;
  height: 200px;
  border: 1px solid #000;
  border-radius: 50%;
  box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}

header h1 {
  text-align: center;
}

.malt {
  display: flex; 
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 1em;
}

.malt p {
  font-weight: 200;
  text-align: center;
}

header button {
  background-color: var(--malt-bg);
  color: #FFF;
  border: 1px solid var(--malt-bg);
  border-radius: 25px;
  padding: .5em 2em;
  font-size: 1em;
  font-weight: 600;
  cursor: pointer;
}


.calendly-inline-widget {
  min-width: 320px;
  width: 100%;
  height: 700px;
}