 @import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');
 
 body {
     font-family: "Sour Gummy", sans-serif;
     margin: 0;
     padding: 0;
 }

 h2 {
     font-family: "Sour Gummy", sans-serif;
     color: rgb(9, 109, 241);
     text-align: center;
 }

 button {
     position: fixed;
     top: 10px;
     right: 20px;
     color: white;
     padding: 12px 20px;
     border: none;
     border-radius: 25px;
     font-size: 16px;
     cursor: pointer;
     box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
     transition: background-color 0.3s ease;
 }

 .btn-home:hover {
     background-color: #218838;
 }

 iframe {
     width: 100%;
     height: 100vh;
     border: none;
 }