@import url('');

* {
    margin: 0;
    padding: 0;
    outline: none;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    background-color: #642b2b;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-height: 100vh;
}

h2 {
    font-style: normal;
    font-weight: 400;
    font-size: 32px;
    line-height: 38px;
    color: #FFFFFF;
    text-align: center;
    margin-top: 70px;
    margin-bottom: 20px;
}

input {
    background: rgba(237, 251, 44, 0.35);
    border: 1px solid rgba(39, 213, 62, 0.2);
    border-radius: 14px;
    height: 74px;
    width: 300px;
    padding-left: 20px;
    font-weight: 500;
    font-size: 40px;
    line-height: 47px;
    color: #FFFFFF;
    opacity: 0.7;
}

.input-min {
    margin-right: 62px;
}

button {
    background: #7ca4b5;
    box-shadow: 0px 18px 40px rgba(73, 51, 237, 0.7);
    border-radius: 25px;
    width: 300px;
    height: 60px;
    color: #e8430c;
    font-weight: 700;
    font-size: 36px;
    margin-top: 50px;
    border: none;
    cursor: pointer;
}

button:hover {
    opacity: 0.9;
}

button:active {
    opacity: 0.8;
}

img {
    width: 300px;
    border-radius: 25px;
}