#Upgrade-Screen {
    position: absolute;
    width: 150vh;
    aspect-ratio: 3/2;
    z-index: 98;

    display: none;
    align-items: center;
    justify-content: center;
}

#Upgrade-Card-Container {
    height: 80%;
    background-color: #232323;
    border: 20px solid #1b1b1b;
    aspect-ratio: 1/2;
    box-shadow: 0px 0px 200px 140px rgba(0, 0, 0, 0.5);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8%;
    padding: 2%;
}

#Upgrade-Card-Container p {
    text-align: center;
    font-size: 2em;
    font-weight: bold;
    color: white;
}

.input-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2%;
    width: 100%;
    height: 10%;
}

.input-container input {
    padding: 6px;
    width: 60%;
    height: 100%;
    font-size: 1em;
    flex: 1;
    border-radius: 1vw;
    border: 3px solid rgb(150, 150, 150);
    outline: none;
}

.input-container button {
    height: 100%;
    aspect-ratio: 1/1;
    font-size: 1vw;
    border-radius: 0.5em;
    cursor: pointer;
    border: none;
    background-color: #128d41;
    color: whitesmoke;
    transition: 0.3s ease-in-out;
}

.input-container button:hover {
    background-color: #0c5327;
}
