*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow: hidden;
    font-family: sans-serif;
}

body{
    background-color: black;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

p{
    color: white;
    font-family: sans-serif;
    font-size: 14px;
    margin-bottom: 6px;
}

#won{
    display: flex;
    position: relative;
    top: -490px;
    border: 4px solid yellow;
    width: 200px;
    height: 100px;
    color: white;
    font-size: 40px;
    justify-content: center;
    align-items: center;
}

#lose{
    display: flex;
    position: relative;
    top: -490px;
    border: 4px solid red;
    width: 200px;
    height: 100px;
    color: red;
    font-size: 40px;
    justify-content: center;
    align-items: center;
}