/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/


body {
  margin: 0;
  background-color: #EE6600;
  color: white;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 3em;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  box-sizing: border-box;
}

.hubTricks {
  aspect-ratio: 327 / 307;
  width: 100%;
  max-width: 327px;
}

.hubTricks svg {
  width: 100%;
  height: 100%
}
    
    
.links {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.link {
  color: white;
  text-decoration: none;
  display: flex;
  gap: 0.5em;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(12px, 8vw, 24px);
  align-items: center;
  position: relative;
}

.link::before {
  content: '\{\{';
  position: absolute;
  right: 110%;
  top: 0;
  opacity: 0;
  transition: opacity 200ms;
}

.link::after {
  content: '\}\}';
  position: absolute;
  left: 110%;
  top: 0;
  opacity: 0;
  transition: opacity 200ms;
}

.link:hover::before,
.link:hover::after {
  opacity: 1;


.divider {
  height: 1px;
  background: white;
  width: 100%;