@import url('https://fonts.googleapis.com/css2?family=Comic+Relief:wght@400;700&family=Hachi+Maru+Pop&family=Playpen+Sans+Arabic:wght@100..800&family=Schoolbell&display=swap');
* {
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    margin: 10rem;
    gap: 20px;
    background-color: #e3d8c6;
    font-family: "Playpen Sans Arabic", cursive;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

h1 {
    display: flex;
    justify-content: center;
    color: #225d65;
}

label {
    display: flex;
    color: #225d65;
    justify-content: center;
}

p {
    display: flex;
    justify-content: center;
    font-size: large;
}

input {
    border: 1px solid #73b1b9;
    border-radius: 0.5rem;
    padding: 8px;
    width: 30%;
    margin: auto;
    outline: none;
    background-color: rgb(243, 234, 223);
    font-family: "Playpen Sans Arabic", cursive;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    color: #225d65;
}

input::placeholder {
    color: #73b1b9;
}

button {
    background-color: #8ecdd5;
    color: #ffffff;
    width: 80px;
    height: 30px;
    margin: auto;
    border: dotted 2px #67b4be;
    border-radius: 0.5rem;
    cursor: pointer;
    font-size: medium;
    font-family: "Playpen Sans Arabic", cursive;
}

button:hover {
    transition: ease 0.2s;
    box-shadow: 1px 1px 5px 0.5px rgba(132, 95, 76, 0.5);
}
