@import url("https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100..900;1,100..900&display=swap");
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: "Exo 2", sans-serif;
background-color: #fff;
color: #000;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 100vh;
text-align: center;
position: relative;
}
.container {
max-width: 600px;
padding: 20px;
display: flex;
flex-direction: column;
align-items: center;
}
.logo {
width: 100px;
height: 100px;
object-fit: contain;
margin-bottom: 15px;
border-radius: 8px;
}
h1 {
font-family: "Exo 2", sans-serif;
font-size: 32px;
mobile-font-size: 27px;
font-weight: 900;
margin-bottom: 20px;
letter-spacing: -0.5px;
font-style: italic;
color: #9a6f12;
}
p {
font-size: 16px;
line-height: 1.5;
color: #111;
}
.description {
margin-bottom: 25px;
}
.schedule {
margin-bottom: 30px;
}
.subscribe-form {
display: flex;
width: 100%;
max-width: 480px;
margin: 0 auto;
}
.subscribe-form input[type="email"] {
flex: 1;
padding: 14px 20px;
font-size: 14px;
font-family: "Exo 2", sans-serif;
border: 1px solid #15161c;
border-right: none;
border-radius: 6px 0 0 6px;
outline: none;
color: #333;
}
.subscribe-form input[type="email"]::placeholder {
color: #999;
}
.subscribe-form button {
padding: 14px 24px;
font-size: 14px;
font-family: "Exo 2", sans-serif;
font-weight: 700;
color: #fff;
background-color: #15161c;
border: 1px solid #15161c;
border-radius: 0 6px 6px 0;
cursor: pointer;
transition: background-color 0.2s, border-color 0.2s;
}
.subscribe-form button:hover {
background-color: #9a6f12;
border-color: #9a6f12;
}
footer {
position: absolute;
bottom: 20px;
left: 20px;
font-size: 12px;
color: #000;
}
@media (max-width: 500px) {
.subscribe-form {
flex-direction: column;
align-items: stretch;
}
.subscribe-form input[type="email"] {
border-right: 1px solid #ff005c;
border-radius: 6px;
margin-bottom: 10px;
}
.subscribe-form button {
border-radius: 6px;
}
footer {
position: static;
margin-top: 40px;
margin-bottom: 20px;
}
}
