@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300&display=swap');

* {
    background-color: #252525;
    text-decoration: none;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.name {
    margin-left: 7px;
    width: auto;
}

input:hover {
    border-color: #5da5f7;
}

input {
    font-size: 30px;
    height: 50px;
    color: #ebebeb;
    border-color: #5391d8;
    box-shadow: none;
    border-top: 0px;
    border-left: 0px;
    border-right: 0px;
    width: 90px;
    text-align: center;
    font-family: "Open Sans", sans-serif;
    font-weight: 300;
}

.center {
    text-align: center;
    width: 100%;
    height: auto;
}

.info {
    display: flex;
    text-align: center;
    width: 100%;
    height: auto;
}

.right{
    padding-left: 40%;
}

.info h6 {
    text-align: right;
    padding-right: 10%;
    padding-top: 25px;
    font-size: 20px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    color: #5391d8;
}

.values {
    text-align: left;
    padding-left: 2px;
}

.info h5 {
    padding-top: 20px;
    font-size: 25px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    color: #ebebeb;
}

.center h3 {
    padding-top: 20px;
    font-size: 48px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    color: #5391d8;
}

.center h4 {
    padding-top: 50px;
    padding-bottom: 2px;
    font-size: 60px;
    font-family: 'Comfortaa', cursive;
    font-weight: 300;
    color: #5391d8;
}

.center h5 {
    font-size: 70px;
    font-family: 'Comfortaa', cursive;
    font-weight: 300;
    color: #ebebeb;
}

.solution {
    font-size: 65px;
    height: 100px;
    font-family: 'Comfortaa', cursive;
    font-weight: 300;
    color: #ebebeb;
    border-color: #5391d8;
    box-shadow: none;
    border-top: 0px;
    border-left: 0px;
    border-right: 0px;
    width: 200px;
    text-align: center;
}

.solution:focus {
    outline: none;
}

.button {
    margin-top: 20px;
    height: 40px;
    width: 120px;
    border: 0;
    border-radius: 20px;
    background-color: #5391d8;
    color: #ebebeb;
    transition: all 0.5s ease 0s;
}

.button:hover {
    background-color: #5da5f7;
}

@media screen and (max-width: 1000px) {
    .center h5 {
        font-size: 35px;
    }
}