
/* Global */
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;

}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
    monospace;
}
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #f7e8e9;
    color: #8b3f45;
}
header{
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    margin-top: 1vw;
    margin-bottom: 5vw;
}

h1, h2 {
    margin: 0 0 10px;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    border-bottom: 2px solid #d98b8f;
}

.logo {
    padding: 10px 25px;
    border: 2px solid #d98b8f;
    border-radius: 4px;
    font-weight: bold;
}

nav a {
    margin-left: 30px;
    text-decoration: none;
    color: #8b3f45;
    font-weight: 600;
}

/* Hero section */
.hero {
    display: flex;
    justify-content: space-between;
    padding: 60px;
    border-bottom: 2px solid #d98b8f;
}

.hero-text {
    max-width: 45%;
}

.hero-text p {
    margin: 20px 0;
    line-height: 1.5;
}

.product{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.box {
    width: 250px;
    height: 250px;
    border: 2px solid #d98b8f;
    border-radius: 4px;
}

/* Buttons */
.btn {
    padding: 12px 28px;
    background: #d98b8f;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
}

.btn.light {
    background: white;
    color: #8b3f45;
    border: 2px solid #d98b8f;
}
button{
    background: white;
    color: #8b3f45;
    border: 2px solid #d98b8f;
    padding: .2vw;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
}
button:hover{
    background: #d98b8f;
    color: white;
}
nav{
    display: flex;
    gap:.5vw;
}
/* Signup */
.signup-section {
    background: #d98b8f;
    padding: 40px;
    display: flex;
    justify-content: center;
}
.product-image{
    width: 250px;
    height: 250px;
    border: 2px solid #d98b8f;
    border-radius: 4px;
}

