* {
    margin: 0;
    padding: 0;
}

.container {
    width: 100vw;
    height: 100vh;
}

.header {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 8vh;
    padding: 12px 0px;
    border-bottom: 1px solid grey;
    background-color: #ADDDD0;
}

#url {
    width: 65%;
    height: 48px;
    border: 1px solid black;
    padding: 0px 16px;
    font-size: 18px;
    border-radius: 58px;
    background: #ffffff;
    box-shadow: inset 23px 23px 45px #cccccc,
                inset -23px -23px 45px #ffffff;
}

#go {
    width: 10%;
    height: 48px;
    margin-left: 1rem;
    border: none;
    border-radius: 58px;
    background: #bbe4ec;
    box-shadow: inset 23px 23px 45px #a3c6cd,
                inset -23px -23px 45px #d3ffff;
    transition: .3s ease-in-out;
}

#go:hover {
    cursor: pointer;
    transform: scale(110%);
}

iframe {
    height: 92vh;
    width: 100%;
}