@import url('https://fonts.googleapis.com/css2?family=Orbitron&family=Roboto&family=Shadows+Into+Light+Two&display=swap');

body {
    margin: 0;
    background-color: #e5e5e5;
    display: flex;
    justify-content: center;
    align-items: center;
}

#background {
    background-image: url("background.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 100vh;
    width: 100vw;
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    opacity: .7;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

#teams {
    display: flex;
    justify-content: space-between;
    width: 90%;
    max-width: 800px;
    margin-bottom: 3rem;
}

.score {
    color: #F94F6D;
    background: #080001;
    padding: .75rem 0;
    border-radius: .5rem;
    margin-top: 0;
    margin-bottom: 1.5rem;
    width: 10rem;
}

#home, #guest {
    text-align: center;
    background: #1B244A;
    padding: 0 3rem 2rem;
    border-radius: 1rem;
    border: 5px solid white;
    box-sizing: border-box;
    opacity: .8;
}

h3 {
    font-family: 'Verdana', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #EEEEEE;
    margin-bottom: 1rem;
}

h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 5rem;
}

.buttons {
    display: flex;
    justify-content: space-between;
}

button {
    font-family: 'Orbitron', sans-serif;
    color: #9AABD8;
    background: #1B244A;
    border: 1px solid #9AABD8;
    border-radius: .25rem;
    padding: .9rem;
}

#new-game-button {
    font-weight: 700;
    width: 20rem;
}

#new-game-button:hover, .score-button:hover {
    background-color: #9AABD8;
    color: #1B244A;
    border: 1px solid #1B244A;
}

.leader {
    outline: 3px solid white;
}