@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;700&display=swap');

@font-face {
    font-family: 'Molot';
    src: url('Molot.otf') format('opentype');
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #121212;
    color: #ffffff;
    text-align: center;
    margin: 0;
    padding: 20px;
}

.logo {
    font-family: 'Molot', sans-serif;
    font-size: 42px;
    font-weight: bold;
}

h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
}

h3 {
    display: inline-block;
}

.underline {
    border-bottom: 1px solid #ffffff;
    padding-bottom: 5px;
}

table {
    width: 100%;
    max-width: 600px;
    margin: auto;
    border-collapse: collapse;
}

th, td {
    padding: 10px;
    text-align: left;
}

input {
    width: 100%;
    padding: 5px;
    background: #1f1f1f;
    color: white;
    border: 1px solid #555;
    border-radius: 4px;
}

button {
    background: #333;
    color: white;
    padding: 10px 15px;
    border: none;
    margin: 10px;
    cursor: pointer;
    border-radius: 5px;
}

button:hover {
    background: #555;
}