
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');

.container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
}

.column-1 {
    flex: 1;
}

.column-2 {
    flex: 1.35;
}

.column-3 {
    flex: 1;
}

.section {
    background-color: #1A1613;
    border: 5px solid white;
    padding-left: 25px;
    padding-right: 25px;
    padding-top: 10px;
    padding-bottom: 10px;

    margin-bottom: 20px;
}

@media (max-width: 800px) {
    .container {
        flex-direction: column;
    }
}

h1 {
    color: #E23950;
    font-family: "LasVegasJackpot", sans-serif;
    text-align: left;
    font-size: 30px;
}

h2 {
    color: #e2399e;
    font-family: "LasVegasJackpot", sans-serif;
    text-align: left;
    font-size: 25px;
}

p {
  font-family: "Oswald", sans-serif;
  word-spacing: 1px;
  color: white;
  font-size: 18px;
  text-align: center;
}

.construction-gif {
    width: 80px;
    height: auto;
    float: left;
    margin: 0 2px 2px 0;
}

.updates {
    max-height: 200px;   /* controls when scrolling starts */
    overflow-y: auto;
    padding-right: 10px;
}

.updates p {
    text-align: left;
}

.updates ul {
    margin: 0;
    padding-left: 20px;
}

.updates li {
    font-family: "Bebas Neue", sans-serif;
    color: white;
    font-size: 17px;

    margin-bottom: 10px;

    line-height: 1.5;
}

.link-box {
    margin-top: 15px;
}

.link-box textarea {
    width: 100%;

    height: 90px;

    padding: 12px;

    resize: none;

    background-color: #111;

    border: 2px solid white;

    color: white;

    font-size: 13px;

    line-height: 1.4;

    font-family: monospace;

    box-sizing: border-box;
}

a {
  color: #1dc6af;
}