* {
    margin: 0px;
    color: #ffffff;
}

@font-face {
    font-family: 'RockSalt';
    src: url('RockSalt-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Poppins';
    src: url('Poppins-Regular.ttf') format('truetype');
}

body {
    background-color: #000000;
}

h1, h2 {
    font-family: 'RockSalt', sans-serif;
    letter-spacing: 2px;
}

h1 {
    background-color: #e00000;
    text-align: center;
    padding: 16px 0px;
    width: 100%;
    font-size: 48px;
}

h2 {
    font-size: 16px;
    margin-left: 8px;
}

li {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
}

img{
    border: 8px solid #ffffff;
    width: calc(50% - 16px);
}

.zombie-section {
    display: flex;
    justify-self: center;
    margin-top: 32px;
    width: 680px;
    height: 340px;
}

.zombie-data {
    display: flex;
    flex-direction: column;
    width: 50%;
}

.zombie-info {
    flex: 1;
    overflow: auto;
}

form {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    height: 15%;
    width: 100%;
}

input {
    font-size: 12px;
    font-family: 'RockSalt', sans-serif;
    letter-spacing: 2px;
}

input[type="text"] {
    flex: 1;
    border: 3px dashed #e00000;
    border-right: 0px;
    color: #000000;
    min-width: 0;
}

input[type="submit"] {
    background-color: #000000;
    border: 3px solid #e00000;
    transition: letter-spacing 0.5s ease;
    cursor: pointer;
}

input[type="submit"]:hover {
    letter-spacing: 4px;
}

input[type="submit"]:active {
    background-color: #e00000;
}

@media (max-width: 680px) {
    .zombie-section {
        justify-self: left;
        width: 100%;
        height: 50vw;
    }
}