* {
    margin: 0;
    padding: 0;
    font-family: Times;
    font-size: 16px;
}

body {
    background-color: #001144;
    color: #aaaa11;
}
h1 {
    text-align: center;
    font-size: 20px;
    padding: 20px;
}

#input_wrapper {
    margin: 20px auto;
    width: 90%;
}

#url {
    width: 90%;
    padding: 15px;
    border: none;
    border-radius: 10px;
    outline: none;
    background-color: rgba(255,255,255,0.7);
}

#loading {
    position: relative;
    display: inline-block;
    width: 0;
    height: 0;
}

#loading:before {
    content: "";
    display: none;
    position: absolute;
    z-index: -1;
    top: -14px;
    left: -160px;
    width: 145px;
    height: 20px;
    margin: 0;
    padding: 0;
    background: url("/images/squareloading.gif") center center;
    opacity: 0.7;
}

#loading.show:before {
    display: block;
}

#name {
    color: red;
    font-size: inherit;
}

#name > i {
    color: yellow;
}

#debug {
    background-color: white;
    margin: 0 20px;
    padding: 15px;
    border-radius: 10px;
}

#video_div {
    width: 640px;
    margin: 20px auto;
    resize: horizontal;
    overflow: hidden;
    position: relative;
}

#video_div:hover:after {
    transform: rotate(45deg);
    display: block;
    content: "";
    position: absolute;
    bottom: -5px;
    right: -5px;
    background-color: gray;
    width: 10px;
    height: 10px;
}

#links, a, a:visited, a:active {
    color: white;
    text-align: center;
    font-weight: bold;
}