body {
    padding: 0;
    margin: 0;
    height: 100vh;
}

*{
    box-sizing: border-box;
    user-select: none;
}

    #container {
        position: relative;
        height: 100vh;
        width: 100%;
    //border: solid 1px red;
        display: flex;
        justify-content: center;
        align-items: center;
    }


#cont {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    position: absolute;
    right: 10vw;
    top: -2vw;
    justify-content: center;
    height: 100vh;
    gap: 1.5vw;
    pointer-events: none;
}

#info {
    width: 100vw;
    height: 3vw;
    font-family: "fabiola-capitals", sans-serif;
    font-weight: 400;
    font-style: normal;
    background-color: #292a33;
    color: white;
    text-align: center;
    font-size: 4vw;
    border: none;
    pointer-events: all;
    z-index: 3;
    display: flex;
    bottom: 0;
    position: fixed;
    align-items: center;
    justify-content: flex-start;
}

#info p {
    font-family: "fabiola-capitals", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.2vw;
    color: white;
    padding-left: 1vw;
}

#playerInput {
    width: 25vw;
    height: 7vw;
    font-family: "fabiola-capitals", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: white;
    text-align: center;
    font-size: 3.4vw;
    pointer-events: all;
    z-index: 2;
    background-image: url("images/buttons/button-2.svg");
    background-repeat: no-repeat;
    background-size: 100%;
    border: none;
    background-color: rgba(0, 0, 0, 0);
}

#create {
    width: 25vw;
    height: 7vw;
    text-align: center;
    cursor: pointer;
    pointer-events: all;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("images/buttons/button-2.svg");
    background-repeat: no-repeat;
    background-size: 100%;
}

#create p {
    font-family: "fabiola-capitals", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 3vw;
    color: white;
}

.glint {
    width: 100%;
    height: 100%;
    z-index: 10000;
    mix-blend-mode: color-dodge;
    background-repeat: no-repeat;
    background-position: -25vw -20vw, 0 0;

    background-image: linear-gradient(
            to top right,
            rgba(156, 124, 0, 0.5) 0%, rgba(255, 214, 8, 0.48) 35%, rgba(255, 255, 255, 1) 36%, rgba(255, 255, 255, 1) 42%, rgba(217, 176, 13, 0.28) 42%, rgba(222, 181, 20, 0.14) 47%, rgba(255, 255, 255, 1) 48%, rgba(255, 255, 255, 1) 51%, rgba(255, 255, 255, 0) 52%, rgba(255, 255, 255, 0) 100%);
    background-size: 550% 550%, 100% 100%;


    transition: background-position 0.3s ease;
}

.agentSelect:hover .glint {
    background-position: 0vw -40vw, 0 0;
    transition-duration: 0.5s;

}


#playerInput::placeholder,
#playerInput::placeholder {
    color: #464854;
}


#playerInput:focus-visible,
#playerInput:focus-visible {
    width: 25vw;
    height: 7vw;
    font-family: "fabiola-capitals", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: white;
    text-align: center;
    font-size: 3.4vw;
    outline: none;
}

::selection {
    background: #77004a;
    text-shadow: none;
}
