/* This file is part of the Bees project. */ @import url('/css?family=Roboto:400,500,700&display=swap'); body { margin: 0; font-family: 'Roboto', sans-serif; } .container { max-width: 100%; padding: 20px; } .header { text-align: center; color: #333; font-size: 24px; } .footer { text-align: center; color: #999; font-size: 14px; margin-top: 20px; } .content { margin-bottom: 20px; } .button { background-color: #f0a800; color: white; border-radius: 5px; padding: 10px 20px; text-decoration: none; display: inline-block; transition: background-color 0.3s ease; } .button:hover { background-color: #e69c00; } .title { font-weight: 700; margin-bottom: 10px; } .para { line-height: 1.6; color: #666; }