* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: "Inter", sans-serif;
}

:root {
    --bg-color: #000;
    --text-gray: rgba(255,255,255, 0.7);
    --text-color-white: #FFFFFF;
    --btn-color-blue: #0070F3;
    --btn-color-gray: #1E1E1E;
}

body {
    background-color: var(--bg-color);
    background-image: url('../BigodeUI-main/img/elipse.svg');
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    width: 1136px;
    justify-content: space-between;
    align-items: center;
    display: flex;

    & .principal {
        display: flex;
        flex-direction: column;
        gap: 40px;
        color: var(--text-color-white);

        & .content {

            & h1 {
                font-size: 80px;
                margin-bottom: 30px;
                font-weight: 500;
            }

            & p {
                color: var(--text-gray);
                font-size: 40px;
            }
        }

        & .btns {
            display: flex;
            justify-content: space-between;
            gap: 20px;

            & a {
                font-size: 24px;
                color: var(--text-color-white);
                font-weight: bold;
                padding: 10px 55px;
                border-radius: 10px;
                background-color: var(--btn-color-gray);
            }

            & a:first-child {
                background-color: var(--btn-color-blue);
            }
        }
    }

    & .card {
        background-image: url("./img/robo.svg");
        width: 390px;
        height: 373px; 
        display: flex;
        align-items: flex-end;
     }


    & .info {
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 17px 20px;
            background-color: rgba(43, 43, 43, 30%);
            backdrop-filter: blur(24.37px);
            align-items: center;
            border-radius: 0px 0px 15px 15px;
        
            
            & .content {
                color: var(--text-color-white);
                display: flex;
                flex-direction: column;
                gap: 10px;
                font-size: 10px;
            }

            & a {
                background: rgba(0,0, 0, 40%);
                padding: 12px 45px;
                border-radius: 100px;
                color: var(--text-color-white);
                font-size: 12px;
                font-weight: 700;

            }
        }
}