@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,400;0,500;0,600;1,100&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #225369;
}

body {
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
    /* background-color: rgb(213, 205, 193); */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.container img {
    width: 300px;
}

.title {
    font-size: 40px;
    font-weight: 600;
    color: var(--primary-color);
    text-align: center;
}

.desc {
    font-size: 24px;
    font-weight: 600;
    color: rgb(76, 76, 76);
    text-align: center;
}

.short-desc {
    color: rgb(76, 76, 76);
    font-size: 16px;
    font-weight: 400;
}

footer {
    color: #fff;
    width: 100%;
    background-color: var(--primary-color);
    text-align: center;
    padding: 20px;
}

footer p {
    text-align: center;
    font-size: 13px;
    font-weight: 400;
}