@font-face {
    font-family: 'Karla';
    src: url('./typo/Karla-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
  }
 *, *::before, *::after {
    box-sizing: border-box;
}
html,
body {
    width: 100%;
    height: 100%;
    font-family: 'Karla', sans-serif; 
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

#container, main {
    width: 100%;
    height: 100%;
}

#hero {
    width: 100vw;
    height: 100vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('./images/background1.jpg');
    background-size: cover;
    background-position: 0% 23%;
    background-repeat : no-repeat;
    display: flex;
    justify-content: center;
    align-items: end;
    position: relative;
}

.links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 2rem;
    padding-top: 2rem;
}

.links a { 
    color: #fff9ef;
    text-decoration: none;
    font-weight: 300;
    margin-bottom: 0.5rem;
    padding-left: 2rem;
    padding-right: 2rem;
}
    .links svg {
    fill: #fff9ef;
    width: 30px;
    cursor: pointer;

}
.icon-container {
    color: white; /* Set the master color here */
    width: 400px;
    height: auto;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .icon-container :global(svg .cls-8),
  .icon-container :global(svg .cls-9) {
    fill: #fff9ef !important;
  }

  .icon-container :global(svg path),
  .icon-container :global(svg polygon),
  .icon-container :global(svg text) {
    fill: #fff9ef;
  }

footer {
    background-color: #fff9ef;
    color: #5c0305;
    text-align: center;
    padding: 2rem;
}

@media (max-width: 600px) {
    .icon-container {
        width: 66%;
    }
    .links {
        font-size: 13px;
    }
}
        
