@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@100;200;300;400;500;600;700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: "IBM Plex Sans Arabic", sans-serif;
}
a {
    text-decoration: none;
}
.buttons {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.back {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #eee;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-top: 30px;
    color: #000;
    cursor: pointer;
    transition: 300ms;
}
.back:hover {
    background-color: #eee;
}
.content {
    width: 100%;
    text-align: center;
    margin-top: 80px;
}
.content h3 {
    font-weight: 500;
    color: #000;
    margin: 20px 0;
}
.content h1 {
    font-size: 60px;
    color: #000;
    font-weight: bold;
    margin-bottom: 10px;
    font-family: "Poppins";
}
.content p {
    color: #000;
    font-size: 18px;
}
