/* CSS styles will be added here */ @import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap"); * { box-sizing: border-box; margin: 0; padding: 0; font-family: "Inter", sans-serif; font-optical-sizing: auto; font-style: normal; } body { display: flex; height: 100vh; background: #85aebf; } .main-container { display: flex; width: 100%; height: 100%; flex-direction: column; } .navbar { display: flex; width: 100%; padding: 15px; background: #aabdc2; justify-content: end; gap: 20px; } .navbar a { padding: 10px 18px; display: flex; justify-content: center; align-items: center; border-radius: 5px; background: #c1c6bf; text-decoration: none; color: black; font-weight: 700; box-shadow: rgba(149, 157, 165, 0.4) 0px 8px 24px; } .navbar a:hover { background: #9fa39e; } .main-content { display: flex; flex-direction: row; } .main-text-container { display: flex; align-items: center; justify-items: center; padding: 40px; } .main-text { display: flex; align-items: center; justify-items: center; background: #21b0ee; border: none; border-radius: 40px; padding: 40px; box-shadow: rgba(149, 157, 165, 0.8) 0px 8px 24px; } .main-text p { font-size: 28px; font-weight: 800; } img { user-select: none; } .main-img { box-shadow: rgba(149, 157, 165, 0.8) 0px 8px 24px; }