@import url('https://fonts.googleapis.com/css2?family=Oswald&display=swap');
 *{
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     transition: background .5s;
     max-width: 100%;
     scroll-behavior: smooth;
     font-family: 'Oswald', sans-serif;
     letter-spacing: 1px;
}
 ::-webkit-scrollbar{
     display: none;
}
 :root{
     --background: #cccccc ;
     --text: #121212;
     --radius: 50px;
     --accent: #4CAF50;
     --black: #121212;
     --white: #e6e6e6;
}
 body{
     background: var(--background);
     height: 100%;
     overflow-y: scroll;
     display: flex;
     flex-direction: column;
     min-height: 100vh;
}
 iframe{
     width: 100%;
     height: 74vh;
}
 