@import url('https://fonts.googleapis.com/css2?family=Anek+Bangla:wdth,wght@95.9,100..800&display=swap');

:root {
    --primary-color: #fe90b3;
    --secondary-color: #ed1a83;

    --card-color: #ffebf5;

    --text-color: #27282a;

    --icon-color: #fd8110;
}
body {
    background-color: var(--primary-color);
    color: #fdf8f4;
    margin: 0px;
    padding: 0px;
    font-family: "Anek Bangla", sans-serif;
}

.main-container {
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.icon img {
    height: 170px;
    width: 200px;
    margin-bottom: 25px;

    animation-duration: 2s;
    animation-name: spin;
}

@keyframes spin {
    0% {

    }
    25% {
        scale: 1.1;
    }
    50% {
        scale: 1.1;
    }
    100% {
        transform: rotate(360deg);    
    }
}

.card {
    background-color: var(--card-color);
    color: #1e1e1e;
    width: 32%;
    border-radius: 22px;
    padding: 10px;
}

.about {
    text-align: center;
    margin: 30px 25px;
    font-size: 25px;
}

.about p {
    font-weight: 700;
    line-height: 30px;
    color: var(--text-color);
}

.social {
    width: 100%;
    display: flex;
    justify-content: center;
}

.social > img {
    width: 44px;
    height: 44px;
    margin: 0px 14px;
    background-color: var(--icon-color);
    border-radius: 12px;
    padding: 8px 8px;
    cursor: pointer;
    transition: 0.5s ease;
}

.social > img:hover {
    background-color: #5ca8c2;
    scale: 1.05;
}

.links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 30px 0px;
}

.links > button {
    width: 90%;
    height: 50px;
    background-color: var(--secondary-color);
    color: #fdf8f4;
    display: flex;
    align-items: center;
    padding: 16px;
    margin: 10px 5px;
    border-radius: 20px;
    border: 0px;
    font-size: 28px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.5s ease;
}

.links > button:hover {
    background-color: #ff95ab;
    scale: 1.05;
}

.links img {
    height: 20px;
    width: 23px;
}

.links > span {
    margin-left: 50px;
}

.text-button {
    margin-left: 10px;
}

@media (max-width: 1366px) {


    .card {
        width: 52%;
    }

    .about {
        text-align: center;
        margin: 0px 5px;
        font-size: 18px;
    }

    .about p {
        line-height: 20px;
    }

    .social > img {
        width: 34px;
        height: 34px;
    }
    .links > button {
        font-size: 22px;
    }    

    .proposal span {
        font-size: 18px;
    }
}


@media (max-width: 898px) {
    .card {
        width: 72%;
    }  
}

@media (max-width: 698px) {
    .icon img {
        height: 120px;
        width: 150px;
        margin-bottom: 20px;
    }

    .card {
        width: 82%;
    }

    .about {
        text-align: center;
        margin: 0px 5px;
        font-size: 18px;
    }

    .about p {
        line-height: 20px;
    }

    .social > img {
        width: 34px;
        height: 34px;
    }

    .links {
        margin: 10px 0px;
    }
    .links > button {
        font-size: 22px;
    }    

    .proposal span {
        font-size: 18px;
    }
}