body {
    font-family: Arial, sans-serif;
    background: url('123123.png') no-repeat center center fixed;
    background-size: cover;
    color: #FFFFFF;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}
header {
    background-color: rgba(78, 52, 46, 0.8);
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 10px 20px;
}
header .logo img {
    width: 89px;
}
header h1 {
    margin: 0;
    font-size: 24px;
}
header .menu-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 24px;
    cursor: pointer;
}
header .menu-icon .bar {
    width: 30px;
    height: 3px;
    background-color: #FFF;
}
main {
    background-color: rgba(62, 39, 35, 0.8);
    padding: 20px;
    max-width: 1000px; 
    width: 100%;
    margin: 20px;
    border-radius: 10px;
}
.hero {
    text-align: center;
    margin-bottom: 40px;
}
.hero img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}
.hero-text {
    margin-top: 20px;
}
.hero-text h2 {
    color: #FFD600;
}
.address, .facebook {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 5px;
    margin-top: 10px;
}
.facebook a {
    color: #FFD600;
    text-decoration: none;
    margin-right: 10px;
}
.facebook img {
    width: 20px;
    vertical-align: middle;
}
.bike {
    margin-bottom: 40px;
    text-align: center;
}
.bike h2 {
    color: #FFD600;
}
.bike img {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin-top: 10px;
    border-radius: 10px;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}
table, th, td {
    border: 1px solid #FFD600;
}
th, td {
    padding: 10px;
    text-align: center;
}
.contact {
    margin-top: 20px;
    text-align: center;
}
footer {
    background-color: rgba(78, 52, 46, 0.8);
    padding: 20px;
    text-align: center;
    width: 100%;
}
