* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Courier New', Courier, monospace;
    color: white;
}
html, body {
    height: 100%;
    width: 100%;
    background-color: rgb(0, 0, 0);
}
body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

header h2 {
    font-size: 80px;
    display: flex;
    align-items: center;
    gap: 20px;
}
header img {
    width: 150px;
}

#teamDisplay {
    padding: 10px 40px;
    border-radius: 25px;
    font-size: 180px;
    background-color: rgb(0, 80, 17);

    display: flex;
    align-items: center;
    gap: 30px;
}
#teamLogo {
    width: 160px;
    height: 160px;
    object-fit: contain;
}

main {
    font-weight: 900;
    padding: 10px 40px;
    text-align: center;
    font-size: 20px;
    line-height: 35px;
    border-radius: 20px;
}

button {
    font-size: 20px;
    font-weight: 600;
    background-color: greenyellow;
    color: black;
    padding: 12px 28px;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    transition: 0.2s;
}
button:active {
    transform: scale(0.9);
}