* {
  scroll-behavior: smooth;
  font-family: "JetBrains Mono", monospace;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

body {
  font-family: "JetBrains Mono", monospace;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  background-color: rgb(211, 211, 211);
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  padding: 20px;
  font-family: "JetBrains Mono", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200px;
  font-style: normal;
}

.top-row,
.feature-row,
.pricing-row,
.information-row{
  background-color: white;
  padding: 5px;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 20px;
  margin: 20px;
}

.top-noti-text {
  font-size: 50px;
  margin-bottom: 20px;
  font-family: "JetBrains Mono", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200px;
  font-style: normal;
  color: rgba(66,140,226,255);
}

.feature-row,
.pricing-row,
.information-row,
.top-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 10%;
  flex-wrap: wrap;
  gap: 20px;
}

.top-row{
  margin-top: 40px;
  padding-top: 0px;
}

.feature,
.info-stack{
  flex: 1;
  max-width: 600px;
}

.top-feature-row,
.top-price-row,
.top-information-row{
  font-size: 48px;
  font-weight: 800;
  margin: 0 0 20px 0;
  color: #0a0a0a;
  line-height: 1.1;
}

.top-row {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.top-noti-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.feature-info,
.pricing-top-text,
.information-text{
  font-size: 20px;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.5;
}

.pricing-row{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pricing-models{
  display: inline-block;
  text-align: center;
  width: 40vw;
  max-width: 250px;
  border-radius: 20px;
  border-color: black;
  border-width: 4px;
  border-style: solid;
}

.pricing-top-text{
  border-radius: 15px 15px 0px 0px;
  background-color: rgb(235,235,235);
  border-bottom-width: 2px;
  border-bottom-style: solid;
  border-bottom-color: rgb(199, 199, 199);
}

.pricing-disc{
  align-self: baseline;
  margin-bottom: 0;
  font-size: 10px;
}
.feature-photo,
.information-photo{
  max-width: 480px;
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .feature-row, 
  .information-row {
    flex-direction: column;
    text-align: left;
  }

  .feature-photo,
  .information-photo {
    max-width: 100%;
  }

  .top-feature-row,
  .top-price-row,
  .top-information-row
   {
    font-size: 36px;
  }
}

footer {
  text-align: center;
  align-items: center;
  justify-content: center;
  padding-left: 5px;
  padding-right: 5px;
  border-radius: 20px;
  left: 0;
  right: 0;
  bottom: 0;
  position: relative;
  bottom: 10px;
  margin-top: 10px;
  font-size: 15px;
  color: gray;
  z-index: 50;
}

button{
  font-size: 12px;
  margin: 10px;
  padding: 10px;
  border-radius: 20px;
  background-color: white;
  box-shadow: none;
  border-width: 1px;
  border-style: solid;
  border-color: rgb(235, 235, 235);
}

button:hover{
  background-color: rgb(235, 235, 235);
  transition-duration: 80ms;
  cursor: pointer;
}

button:active{
  background-color: rgb(164, 164, 164);;
  transition-duration: 80ms;
}