* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100%;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.background {
    background-color: #fdd8d8;
    padding: 80px 60px;
    border-radius: 100px;
    transform: scale(1.5);
}

.number {
    font-size: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 30px;
    margin-top: 50px;
}

.button {
    background-color: #e5cbcb;
    border: none;
    width: 200px;
    height: 60px;
    font-size: 40px;
    cursor: pointer;
    border-radius: 50px;
    color: white;
    border: 5px solid #e4c4c4;
    transition: 0.2s ease;
}

.button:hover {
    transform: scale(0.9);
}

.text-box-container {
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: absolute;
    top: 50%;
    left: 50%;
    bottom: 50%;
    transform: translate(-50%);
    background-color: rgba(224, 224, 224, 0.85);
    height: 100vh;
    width: 150vh;
    margin: auto;
}

.alert-text-box {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.text-box {
    width: 500px;
    height: 60px;
    font-size: 24px;
    padding: 15px;
    background-color: white;
    border: none;
    border-radius: 100px 0px 0px 100px;
    color: #c5c5c5;
    transition: 0.2s ease;
}

.text-box:hover {
    padding: 25px;
}


::placeholder {
    color: #c5c5c5;
    text-align: left;
}

.text-box2 {
    border-radius: 100px;
    width: 660px;
    text-align: center;
}

.submit-button {
    height: 60px;
    width: 160px;
    border: none;
    border-radius: 0px 100px 100px 0px;
    cursor: pointer;
    font-size: 30px;
    color: white;
    background-color: #e5cbcb;
    border: 5px solid #e4c4c4;
    transition: 0.2s ease;
}

.submit-button:hover {
    transform: scale(1, 0.9);
}

.close-btn {
    width: 660px;
    margin-top: 20px;
    font-size: 35px;
}

.settings {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.settings-btn {
    height: 60px;
    width: 660px;
    font-size: 35px;
}

.settings-btn:hover, .close-btn:hover {
    transform: scale(0.94);
}

@media only screen and (max-width: 1200px) {
    .container {background-color: #fdd8d8;}
}

@media only screen and (max-width: 1000px) {
    .background {transform: scale(1.3);}
    .container {background-color: #fdd8d8;}
    .buttons {margin-top: 10px;}
    .button {width: 160px;}
    .settings-btn {width: 540px; margin-top: 0px;}
    .text-box {width: 425px; font-size: 16px;}
    .text-box2 {width: 550px;}
    .close-btn {width: 550px;}
    .submit-button {width: 125px;}
}

@media only screen and (max-width: 700px) {
    .background {transform: scale(1.3);}
    .container {background-color: #fdd8d8;}
    .buttons {flex-direction: column-reverse;}
    .button {margin-bottom: 20px; width: 220px;}
    .settings-btn {width: 220px; margin-top: 0px;}
    .alert-text-box {flex-direction: column;}
    .text-box {width: 270px; border-radius: 100px; font-size: 16px;}
    .close-btn {width: 200px; margin-top: 10px;}
    .submit-button {border-radius: 100px; margin-top: 10px; width: 200px; font-size: 35px;}
}