@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&display=swap');

* {
    font-family: "Rajdhani", sans-serif;
}

body {
    background: linear-gradient(180deg, #60e7dc, #48ada5);
    width: 100vw;
    height: 100vh;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.title {
    font-size: 4vh;
    font-weight: 700;
    color: #ffffff;
}

.title > span {
    font-size: 1.5vh;
}

.container {
    width: 30vw;
}

.header {
    margin-bottom: 1vh;
}

input {
    width: 100%;
    height: 4vh;
    background-color: transparent;
    outline: none;
    border: 0.1vh solid #ffffff77;
    background-color: #ffffff33;
    border-radius: 2vh;
    font-weight: 600;
    text-align: center;
    color: #FFFFFF;
}

input::placeholder {
    color: rgba(255, 255, 255, 0.411);
}

.variations {
    margin-top: 0.5vh;
}

.variation {
    color: #FFFFFF;
    text-align: center;
    border: 0.1vh solid #ffffff77;
    background-color: #ffffff33;
    border-radius: 2vh;
    margin-bottom: 1vh;
    word-break: break-word;
}

.input-templates {
    margin-top: 1vh;
    display: flex;
    width: 100%;
    border: 0.1vh solid #ffffff77;
    background-color: #ffffff33;
    border-radius: 2vh;
}

.input-template {
    flex-grow: 1;
    flex-shrink: 1;
    text-align: center;
    color: #FFFFFF;
    font-weight: 500;
    transition: 250ms;
}

.input-template:hover {
    color: #8960e7;
    cursor: pointer;
}

.result-label {
    margin-top: 3vh;
    font-size: 3vh;
    font-weight: 700;
    color: #ffffff;
}

.result-container {
    display: none;
}

img {
    width: 2vw;
    height: 2vw;
    border-radius: 1vw;
}

.variations:hover {
    cursor: pointer;
}
