body{ margin: 0; font-family: "Caveat", cursive; font-optical-sizing: auto; font-weight: normal; } h1{ font-size: 60px; font-weight: 500; position: relative; left: 140px; margin:0; } img{ height: 50px; } #frame{ position: absolute; left: 680px; top:70px; width: 700px; display: flex; flex-direction: column; justify-content: center; align-items: center; } #second-image{ position: absolute; left: 100px; top: 50px; height: 500px; z-index: -1; } #menu{ width: 600px; height: 300px; background-color: #f3f8ff; padding: 30px; display: grid; grid-template-columns: repeat(2, 1fr); /* Create two equal columns */ gap: 20px; /* Space between grid items */ } #menu a { display: flex; /* Enable Flexbox for a */ flex-direction: column; /* Align icon and text vertically */ align-items: center; /* Center items horizontally */ justify-content: center; text-decoration: none; /* Remove underline from links */ padding: 15px; /* Add padding inside each link */ border: 1px solid #ccc; /* Optional: border around each link */ border-radius: 5px; font-size: 30px; ; } #menu a:hover { background-color: white; /* Light blue background on hover */ transition: background-color 0.3s ease; border: 1px solid black; } #menu img { max-width: 50px; /* Limit the width of images */ margin-bottom: 5px; /* Space between image and text */ }