body {
    background: rgb(40, 42, 57);
    color: whitesmoke;
    font-family: sans-serif;
    margin: 0px;
}

#formCont {
    width: fit-content;
    margin: auto;
    text-align: center;
}

h3 {
    font-family: cursive;
}

h3>span {
    background: -webkit-linear-gradient(45deg, #FF512F 0%, #F09819 51%, #FF512F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
}

form {
    display: flex;
    background-color: rgb(57, 60, 73);
    width: 500px;
    border-radius: 20px;
    border: 2px solid #FF512F;
}

input {
    border: none;
    outline: none;
    background-color: rgb(57, 60, 73);
    color: whitesmoke;
    border-radius: 20px;
    padding: 0px 20px;
    flex-grow: 1;
}

.button-87 {
    padding: 10px 30px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;
    border-radius: 20px;
    border: 0px;
    font-weight: 700;
    box-shadow: 0px 0px 14px -7px #f09819;
    background-image: linear-gradient(45deg, #FF512F 0%, #F09819 51%, #FF512F 100%);
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

.button-87:hover {
    background-position: right center;
    color: #fff;
    text-decoration: none;
}

.button-87:active {
    transform: scale(0.95);
}

#link {
    background-color: rgb(1, 22, 39);
    padding: 15px 20px;
    width: 500px;
    margin: 20px auto;
    box-sizing: border-box;
    border-radius: 10px;
    position: relative;
    display: none;
    text-align: center;
}

#link>p:first-child {
    letter-spacing: 1px; 
    color:rgb(150,164,187);
    font-size: 14px;
    font-weight: 550;
    text-align: center;
    margin: 0px;
}

.copy-button{
    padding:5px 15px;
    position: absolute;
    top:15px;
    right:15px;
}

#linkCont{
    margin:20px 0px 0px;
    color:black;
    background-color: rgb(232,240,254);
    border-radius: 5px;
    padding:5px;
    font-size: 13px;
    font-weight: 600;
    user-select: none;
    text-align: left;
    word-wrap: break-word;
}

.visit-button{
    text-align: center;
    margin:10px 0px 0px;
    padding:10px 20px;
}

@media all and (max-width:540px){
    form {
        display: flex;
        background-color: transparent;
        width: 95vw;
        /* border-radius: 20px; */
        border: none;
        flex-direction: column;
    }
    input{
        padding:10px 15px;
        margin-bottom:10px;
    }
    #link{
        width:95vw;
        padding:15px;
    }
    .visit-button{
        padding:8px 20px;
    }
    .copy-button{
        padding:3px 11px;
        font-size:12px;
    }
}