body { background-color: black; font-family: Arial, sans-serif; /* Fallback font */ margin: 0; padding: 0; } .container { display: flex; justify-content: space-between; align-items: center; min-height: 100vh; } .logo { font-family: 'Times New Roman', serif; font-size: 90px; font-weight: bold; font-style: italic; color: white; position: absolute; top: 20px; left: 20px; } .buttons { display: flex; flex-direction: column; gap: 10px; position: absolute; top: 50%; right: 20px; transform: translateY(-50%); } button { background-color: white; color: black; font-family: Lobster, cursive; font-size: 20px; padding: 15px 30px; border: none; cursor: pointer; } button:hover { background-color: #f1f1f1; }