body {
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    padding: 15px;

}

header {
    position: relative;
    color: white;
    display: inline-block;
    width: 1200px;
    box-sizing: border-box;

    padding: 10px;

    border: 1px solid black;
    border-radius: 25px 25px 0 0;
    background-color: rgb(100,65,164);

}

header form {
    position: absolute;
    left: 30px;
    
}
header form input {
    margin-left: 10px;
}

h1 {
    font-size: 1.4em;
    font-weight: bold;
}

td {
    text-align: left;
}

div.mainContainer {
    position: relative;
    display: inline-block;
    box-sizing: border-box;

    height: 738px;
    width: 1200px;

    background-image: url(background.png);
    background-repeat: no-repeat;
    border: 1px solid black;
    border-radius: 0 0 25px 25px;

}






/* Stream */
.hidden {
    display: none;
}
.stream {
    position: absolute;
    width: 575px;
    height: 325px;

    top: 15px;
    left: 15px;

    background-color: black;
    border-radius: 15px;
    border: 2px solid purple;
}

/* Cow-Container */
#CowContainer {
    position: absolute;
    left: 40px;
    top: 450px;
    width: 1200px;
    height: 280px;
}

/* Cows */
.cow {
    position: absolute;
}
.cow img {
    position: relative;
    width: 100px;
    z-index: -5;
}
.chatbubble {
    opacity: 1;
    position: absolute;
    display: block;
    min-width: 50px;
    max-width: 400px;
    z-index: 1000;

    padding: 10px;

    border: 1px solid black;
    border-radius: 15px;
    background: white;

    bottom: 0px;
    left: 0px;
}
.chatbubble > div {
    position: absolute;
    bottom: -10px;
    left: 20px;

    z-index: -1;
    width: 20px;
    height: 20px;

    transform: rotate(45deg);
    border: 1px solid black;
    border-top: none;
    border-left: none;
    background-color: white; 
}
.fadeout {
    background: rgba(255, 255, 255, 0);


    transition-delay: 5s;
    translate: 2s;
}