html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body{
    margin: 0;
    height: 100%;
    font-family: "inter", sans-serif;
}

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    width: 100vw;
    overflow-x: hidden;
}

.header {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #6943ff;
    color: white;
}

input{
    text-align: center;
    width: 112px;
    height: 83px;
    font-size:3.625rem;
    font-weight: bold;
    background-color: transparent;
    border: 2px solid #b295ff;
    border-radius: 5px;
    color: white;
    font-family: "inter", sans-serif;
}

.header-title{
    margin-top: 33px;
    margin-bottom: 30px;
}

button{
    width: 117px;
    height: 42px;
    color: #3d3d3d;
    font-size: 1rem;
    font-family: "inter", sans-serif;
    font-weight: 500;
    border-radius: 5px;
    border: none;
    margin-top: 26px;
    margin-bottom: 34px;
}

.display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 23px;
    background-color: #1f2937;
    padding: 36px 25px;

    flex-grow: 1;
    flex-shrink: 1;
    min-height: 0;
}

.info {
    background-color: #273549;
    border-radius: 5px;
    text-align: center;
    width: 100%;

    flex-grow: 1;
    flex-shrink: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px;
}

.info > h1{
    font-size: 1.25rem;
    color: #ccc1ff;
    font-weight: 600;
}

.info > p {
    font-size: 0.875rem;
    color: #fff;
}