*{
    font-family:Verdana, Geneva, Tahoma, sans-serif
}

body {
    background-color: #282828;
    color:#fff;
    transition: background-color 0.5s ease;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

#box{
    display: flex;
}

#videoUrl {
    box-shadow: 0px 8px 10px 0px rgba(0, 0, 0, .3);
    width: 80%;
    padding: 10px;
    margin-bottom: 10px;
    box-sizing: border-box;
    border-radius: 25px;
    background-color: #424242;
    color: #fff;
}

#embedButton {
    box-shadow: 0px 8px 10px 0px rgba(0, 0, 0, .3);		
    -webkit-transition: all .1s linear;
    transition: all .1s linear;
    width: 50px;
    height: 40px;
    border-radius: 50%;
    background-color: #812828;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 16px;
    margin-left: 10px;
}

#embedButton:hover{
    background-color: #913838;
}
