@font-face {
    font-family: 'QuoteFont';
    src: url(../fonts/IBMPlexSans-Regular.ttf);
  }

* {
    margin: 0;
    padding: 0;
    font-family: 'QuoteFont';
    box-sizing: border-box;
    line-height: 30px;
}


body {
    display: flex;
    justify-content: center;
    align-items: center;
  flex-direction: column;
  margin: 0 1rem;
    min-height: 100vh;
    text-align: center;
    background: #0e1111;
}

.main-content {
    background-color: #FFFFFF;
    padding: 5rem;
    margin-top: 2rem;
    border-radius: 5px;
    text-align: center;
}

.container {
    max-width: 768px;
}

h1 {
    color: #fff;
    font-size: 48px;
}

.main-content .quote {
    font-size: 24px;
}

.main-content .quote::before {
    font-size: 20px;
    color: #0e1111;
    font-weight: bold;
    margin-right: 5px;
    opacity: 0.6;
}

.main-content .quote::after {
    font-size: 20px;
    color: #0e1111;
    font-weight: bold;
    margin-left: 5px;
    align-items: center;
}

.main-content .person {
    margin-top: 30px;
    font-weight: bold;
    max-width: 100px;
}

button {
    padding: 0.75rem 2rem;
    margin-top: 15px;
    background: #0f2620;
    outline: none;
    border: none;
    color: #fff;
    font-weight: bold;
    letter-spacing: 1px;
    border-radius: 4px;
}

.quote-container {
    margin-bottom: 15px;
    color: #fff;
    padding: 25px;
}

.footer {
    position: fixed;
    bottom: 0;
    margin-bottom: 25px;
    width: 100%;
    text-align: center;
    padding: 10px;
    color: #fff;
    background-color: #0e1111;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #0e1111;
    color: #fff;
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.language-switcher {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.language-switcher li {
    margin-left: 20px;
}

.language-switcher a {
    color: white;
    text-decoration: none;
}

.language-switcher a:hover {
    text-decoration: underline;
}

a.active
{
    text-decoration: underline;
}

@media only screen and (max-width: 600px) {
    h1 {
      font-size: 36px;
    }
  }