*,
*::before,
*::after {
    box-sizing: border-box;
}
* {
    margin: 0;
    padding: 0;
}
@font-face {
    src: url("./fonts/Poppins/Poppins-Regular.ttf") format(truetype);
    font-family: "Poppins400";
    font-display: swap;
}
@font-face {
    src: url("./fonts/Poppins/Poppins-SemiBold.ttf") format(truetype);
    font-family: "Poppins600";
    font-display: swap;
}
@font-face {
    src: url("./fonts/Open_Sans/static/OpenSans-Regular.ttf") format(truetype);
    font-family: "OpenSans400";
    font-display: swap;
}
:root {
    --Violet: hsl(257, 40%, 49%);
    --Soft-Megenta: hsl(300, 69%, 71%);
}
body {
    -webkit-font-smoothing: antialiased;
    inline-size: 1.5;
    min-height: 100vh;
    font-size: 1rem;
    font-family: OpenSans400;
    background-image: url('./images/bg-desktop.svg');
    background-color: var(--Violet);
    color: white;
    display: flex;
    flex-direction: column;

    .top {
        margin: 70px 90px 100px;
    }

    .bottom {
        margin: 100px 90px 100px;
        display: flex;

        .direct {
            margin-left: 50px;
            .title {
                font-size: 40px;
                font-family: Poppins600;
                padding: 40px 0 30px;
            }

            .content {
                font-size: 18px;
                line-height: 1.5;
            }

            .btn {
                margin: 25px 0;
                width: 200px;
                height: 60px;
                color: var(--Violet);
                font-family: Poppins400;
                font-size: 18px;
                border: 0;
                border-radius: 50px;
                cursor: pointer;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            }
            .btn:hover {
                background-color: var(--Soft-Megenta);
                color: white;
            }
        }
    }

    .icon-area {
        display: flex;
        justify-content: end;
        align-items: center;
        padding-right: 80px;
        transform: translateY(-30px);

        .icon {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;

            i {
                width: 40px; height: 40px;
                border-radius: 50%;
                border: 1px solid white;
                display: flex;
                align-items: center;
                justify-content: center;
                cursor: pointer;
            }
            i::before {
                width: 40px; height: 40px;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 18px;
            }
            i:hover {
                color: var(--Soft-Megenta);
                border: 1px solid var(--Soft-Megenta);
            }
        }
    }
}

.attribution {
    position: fixed;
    font-size: 11px;
    text-align: center;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.attribution a {
    color: hsl(228, 45%, 44%);
}