@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Sour+Gummy:ital,wght@0,100..900;1,100..900&display=swap');

.search-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px 0;
}

.search-form label {
    margin-bottom: 10px;
    font-size: 18px;
    color: #000;
}

.search-form input {
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    margin-bottom: 10px;
    width: 100%;
    max-width: 300px;
}

.search-form button {
    padding: 10px 20px;
    border-radius: 6px;
    border: none;
    background-color: #FB90B7;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

.search-form button:hover {
    background-color: #D01257;
}

.main-wrapper {
    display: flex;
    width: 100%;
}

.navigation {
    margin: 20px auto;
    width: 200px;
    padding: 20px;
    background-color: #D01257;
    border-radius: 6px;
    color: #fff;
}

.content-wrapper {
    flex: 1;
    padding: 20px;
}

.wrapper {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 50px;
}

.column {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
}


.left-list,
.right-list {
    padding: 10px;
    background-color: #D01257;
    border-radius: 6px;
    list-style-type: none;
    color: #fff;
    text-align: center;
}

.left-list li,
.right-list li {
    border-bottom: 1px solid #fff;
    padding: 30px 0;
}

.left-list li:last-child,
.right-list li:last-child {
    border-bottom: none;
}


body {
    background-color: #0f1021;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.dark {
    background: #ffcee4;
    color: white;
}

button {
    display: block;
    margin: 10px auto;
    border: 1px solid #ffcee4;
    background: white;
    font-size: 20px;
    border-radius: 6px;
    padding: 10px 15px;
    transition: all 150ms ease-in-out;
}

button:hover {
    background: #ffcee4;
    cursor: pointer;
}

.dark button:hover {
    background: #0f1021;
    color: white;
}

.container {
    background: #fff;
    padding: 10px;
    box-shadow: 5px 5px 5px white;
    border-radius: 10px;
    box-sizing: border-box;
    max-width: 100%;
    width: 600px;
    margin: 20px auto;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.dark .container {
    background: #fff;
    color: #000;
}

a {
    color: #fff;
}


p {
    font-size: 18px;
    line-height: 1.5;
    text-align: center;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    border: 1px solid black;
    padding: 10px;
    text-align: center;
}

th {
    background-color: #FB90B7;
    color: #fff;
}

h1,
h2 {
    font-family: 'Sour Gummy', sans-serif;
}

h1 {
    text-align: center;
    font-size: 36px;
    margin: 10px 0;
    padding: 10px;
    background-color: #FB90B7;
    color: white;
    border-radius: 6px;
}

.background {
    margin: 10px 0;
    font-size: 100;
}

h1,
th {
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

h2 {
    font-size: 28px;
    margin: 5px 0;
}

.grid img {
    width: 100%;
    max-width: 450px;
}

.group {
    display: flex;
    margin: 0;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.2);
    text-align: center;
}

.img {
    max-width: 25px;
}

.date {
    opacity: 0.7;
}

.weblink {
    color: #0f1021;
}

.github {
    color: #0f1021;
}

footer {
    text-align: center;
    font-size: 18px;
    color: rgba(0, 0, 0, 0.8);
}