* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
    margin: 0px;
    padding: 0px;
    height: 100%;
    width: 100vw;
    font-family: Raleway, sans-serif;
    font-size: 16px;
    display: flex;
    flex-direction: column;
    color: white;
}

h1 {
    display: inline;
    margin: 0px 0;
    padding: 0px;
    font-size: 18px;
    font-family: "Lobster", sans-serif;
    font-weight: 200;
}

h2 {
    margin: 0px 0;
    padding: 0px;
    font-size: 18px;
    font-family: "Raleway", sans-serif;
}

h3 {
    margin: 0px 0;
    padding: 0px;
    font-size: 72px;
    font-family: "Raleway", sans-serif;
    font-weight: 600;
}

li {
    letter-spacing: 0.5px;
}

.footer {
  padding: 50px;
  width: 100vw;
  justify-content: center;
  text-align: center;
  align-items: center;
  font-style: none;

}

.footer {
    color: black;
}

.footer a {
    color: black;
}

.outer-container {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    align-items: left;
    width: 100vw;
}

.main-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100vw;
    background: linear-gradient(to bottom, 
        #d1b8a9 0%,
        #d1b8a9 66%,
        #fdf9f5 100%
    );
    background-size: cover;
    background-position: center;
}

.padding-container {
    height: 100%;
    width: 100vw;
}

.left-container {
    padding: clamp(0px, 1%, 20px);
    padding-right: 0px;
    margin-left: clamp(0px, 5%, 200px);
    border-radius: 8px;
    text-align: left;
    align-items: center;
    width: 100%;
    max-width: clamp(325px, 50%, 600px);
}

.right-container {
    position: relative;
    width: 100%;
    height: 768px;
    padding-left: 0px;
    justify-content: left;
    align: left;
}

.right-container img {
    max-width: 100%;
    height: auto;
    max-height: 768px;
}

.button-div {
    margin: 0px 0;
    margin-top: 10px;
    padding: 0px;
    font-size: 24px;
    font-family: "Raleway", sans-serif;
}

button {
  width: clamp(100px, 20vw, 176px);
  height: 32px;
  background-color: #000;
  color: white;
  border: solid, 1px, black;
  cursor: pointer;

  text-align: center;
  font-family: "Raleway";
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

button:hover {
  background-color: white;
  color: black;
}

/* MEDIA QUERY FOR MOBILE */
@media only screen and (max-width: 767px) {
    .main-container {
        flex-direction: column;
        align-items: center;
    }

    .left-container, .right-container {
        width: 90%;
        margin-left: 0;
        max-width: 90%;
    }

    h3 {
    margin: 0px 0;
    padding: 0px;
    font-size: 36px;
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    }
}