@font-face {
    font-family: 'Poppins';
    src: url(../fonts/Poppins-Medium.ttf) format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Noahs Font Shit';
    src: url(../fonts/GOODTIME.TTF) format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: '20th';
    src: url(../fonts/20THCENT.TTF) format('truetype');
}

body {
    font-family: 'Poppins', sans-serif;
    text-align: center;
    background-color: #50586c;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

h1 {
    color: #ffffff;
    background-color: #50586c;
    margin-bottom: 40px;
    font-size: 36px;
    font-weight: bold;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
    max-width: 400px;
}

.story {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
    max-width: 700px;
    text-align: left;
}
.story p {
    margin: 0 auto;
    align-self: stretch;
}

.button {
    display: block;
    width: 100%;
    padding: 20px;
    font-size: 22px;
    font-weight: bold;
    text-decoration: none;
    color: white;
    background-color: #007BFF;
    border-radius: 12px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.button:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}
p {
    color: #ffffff;
}
.webnoah-container  {
    
    h1 {
        font-family: 'Noahs Font Shit', sans-serif;
        font-size: 60px;
      font-weight: bold;
      background: linear-gradient(90deg, #c49c61, #f7edaa, #c49c61);
      background-size: 200%;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      color: transparent;
      animation: gradient-move 4s linear infinite;
    }

    @keyframes gradient-move {
      0% {
        background-position: 0% 50%;
      }
      100% {
        background-position: 100% 50%;
      }
    }
    p {
        font-family: '20th', sans-serif;
    }
}
