.smallinput {
    width: 25%;
    font-size: 15px;
    text-align: left;
    background: transparent;
    color: white;
    padding: 5px;
    border: 3px solid white;
    border-radius: 25px;
    margin-bottom:5px;
}
#portinput {
    width: 10%;
    font-size: 15px;
    text-align: left;
    background: transparent;
    color: white;
    padding: 5px;
    border: 3px solid white;
    border-radius: 25px;
}
#proxy {
    display: flex;
    color: white;
    background-color: black;
    border: 3px solid white;
    border-radius: 25px;
    outline: none;
}
.switchtext {
    display: flex;
    flex-direction: row;
    align-items: center;
    color: white;
    justify-content: center;
    margin: 50px;
}
a {
    color: inherit;
    text-decoration: inherit;
}
#started {
    display: block;
}
#finished {
    background: black;
    display: none;
}
.cont {
    position: absolute;
    top: 5px;
    font-size: 20px;
    width: 70%;
    left: 15%;
}
body {
    color: white;
    text-align: center;
    background: black;
    overflow: hidden;
}
.switch {
    position: relative;
    display: inline-block;
    width: 53px;
    height: 28px;
    border: 5px solid white;
    border-radius: 25px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: transparent;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

input:checked + .slider {
    background: transparent;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

.slider.round {
    border-radius: 34px;
    outline: none;
}

.slider.round:before {
    border-radius: 50%;
}

#input {
    display: block;
    width: 50%;
    position: absolute;
    left: 25%;
    bottom: 43%;
    font-size: 20px;
    text-align: left;
    background: transparent;
    color: white;
    padding: 5px;
    border: 3px solid white;
    border-radius: 25px;
}
::placeholder {
    color: white;
}
button {
    position: absolute;
    bottom: 27%;
    display: block;
    text-align: center;
    background: transparent;
    color: white;
    border: 3px solid white;
    border-radius: 25px;
    font-size: 20px;
    padding: 8.5px;
}
#advancedbutton {
    position: absolute;
    top: 5px;
    left: 5px;
    display: block;
    text-align: center;
    background: black;
    color: white;
    font-size: 15px;
    cursor: pointer;
    z-index: 15;
}
#advanced {
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: black;
    top: 100%;
    left: 0;
    z-index: 10;
    border-top: 3px solid white;
    animation-fill-mode: both;
    display: block;
    text-align: center;
    flex-direction: column;
    align-items: center;
}
@keyframes slideup {
    0% {
        top: 100%;
    }
    100% {
        top: 0;
    }
}
@keyframes slidedown {
    0% {
        top: 0;
    }
    100% {
        top: 100%;
    }
}
