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

/* Beleren Bold */
@font-face {
    font-family: "Beleren Bold";
    src:
        url("./font/Beleren2016-Bold.woff") format("woff"),
        url("./font/Beleren2016-Bold.ttf") format("truetype"),
        url("./font/Beleren2016-Bold.svg#Beleren2016-Bold") format("svg");
    font-style: normal;
    font-weight: bold;
    text-rendering: optimizeLegibility;
}

/* Beleren SmallCaps Bold */
@font-face {
    font-family: "Beleren SmallCaps Bold";
    src:
        url("./font/Beleren2016SmallCaps-Bold.woff") format("woff"),
        url("./font/Beleren2016SmallCaps-Bold.ttf") format("truetype"),
        url("./font/Beleren2016SmallCaps-Bold.svg#Beleren2016SmallCaps-Bold") format("svg");
    font-style: normal;
    font-weight: bold;
    text-rendering: optimizeLegibility;
}

/* Beleren SmallCaps BoldItalic */
@font-face {
    font-family: "Beleren SmallCaps BoldItalic";
    src:
        url("./font/Beleren2016SmallCaps-BoldItalic.woff") format("woff"),
        url("./font/Beleren2016SmallCaps-BoldItalic.ttf") format("truetype"),
        url("./font/Beleren2016SmallCaps-BoldItalic.svg#Beleren2016SmallCaps-BoldItalic") format("svg");
    font-style: italic;
    font-weight: bold;
    text-rendering: optimizeLegibility;
}

* {
    box-sizing: border-box;
}

body {
    font-family: "Beleren Bold", sans-serif;
    margin: 0;
    background-color: black;
    background-image: url("./img/vo_Toni_Infante.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.floatcontainer {
    margin: auto;
    width: fit-content;
    padding-left: 1rem;
    /* padding-right: 1rem; */
    text-align: center;
    border: 1px solid black;
    border-radius: 2rem;
    background-color: rgba(0, 0, 0, 0.75);
}

.content {
    font-family: "Beleren Bold", sans-serif;
    color: #ddd;
}

input[type="number"] {
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
}

.number-input {
    display: inline-flex;
}

.number-input,
.number-input * {
    box-sizing: border-box;
}

.number-input button {
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    background-color: transparent;
    border: none;
    align-items: center;
    justify-content: center;
    width: 6rem;
    height: 5rem;
    cursor: pointer;
    margin: 0;
    position: relative;
}

.number-input button:before,
.number-input button:after {
    display: inline-block;
    position: absolute;
    content: '';
    width: 1rem;
    height: 2px;
    background-color: #FFFFFF;
    transform: translate(-50%, -50%);
}

.number-input button.plus:after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.number-input input[type=number] {
    font-family: "Beleren Bold", sans-serif;
    max-width: 6rem;
    padding: .5rem;
    border: solid #ddd;
    border-width: 0 2px;
    border-radius: .5rem;
    font-size: 4rem;
    height: 5rem;
    font-weight: bold;
    text-align: center;
    background-color: transparent;
    color: #ddd;
}

.manasymbol {
    width: 4rem;
    height: 4rem;
}

.zerobtn {
    font-family: "Beleren Bold", sans-serif;
    outline: #ddd;
    color: #ddd;
    background-color: transparent;
    border: solid 1px #ddd;
    border-radius: .5rem;
    align-items: center;
    justify-content: center;
    height: 2rem;
    cursor: pointer;
    margin: 0;
    position: relative;
}

input[type=text] {
    font-family: "Beleren Bold", sans-serif;
    font-size: 1rem;
    outline: #ddd;
    color: #ddd;
    background-color: transparent;
    border: solid 1px #ddd;
    border-radius: .5rem;
    align-items: center;
    justify-content: center;
    margin: 0;
    position: relative;
    width: 20%;
}