@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap');
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {

    font-family: "Cairo", sans-serif;
    min-height: 100vh;


}

.container {

    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.heading, .btn {
    background-color: #353778;
    color: white;
}

.btn:hover {
    background-color: rgb(25, 27, 62);
    color: white;
}

h3 {
    font-weight: bold;
}
