Untitled

 avatar
unknown
plain_text
5 months ago
1.5 kB
5
Indexable
/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

header {
    background: #ff6b6b;
    color: white;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header ul {
    list-style: none;
    display: flex;
}

header li {
    margin: 0 1rem;
}

header a {
    text-decoration: none;
    color: white;
    font-weight: bold;
}

.hero {
    background: url('cookies.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 4rem 2rem;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn {
    background: #333;
    color: white;
    padding: 0.5rem 1rem;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 5px;
}

.about, .contact {
    padding: 2rem;
    text-align: center;
}

.about ul {
    list-style: none;
    margin-top: 1rem;
}

.about li {
    margin: 0.5rem 0;
}

.contact form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.contact form input, .contact form textarea, .contact form button {
    width: 80%;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact form button {
    background: #ff6b6b;
    color: white;
    border: none;
    cursor: pointer;
}

footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 1rem 0;
}
Editor is loading...
Leave a Comment