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

body {
    font-family: 'Ubuntu', sans-serif;
    background-color: #f1f1f1;
    height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;

    main {
        flex-grow: 1;
        max-width: 1200px;
        border: 2px solid lightgray;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        background: white;
        border-radius: 10px;
        padding: 3rem;
        display: flex;
        justify-content: space-between;
        gap: 2rem;

        @media screen and (max-width: 768px) {
            width: 100dvw;
            height: 100dvh;
            background: unset;
            border: none;
            box-shadow: none;
            text-align: center;
            padding: 3rem 0;
        }

        .main-content {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            gap: 2rem;

            @media screen and (max-width: 768px) {
                gap: 1rem;
                align-items: center;
                width: 100%;
            }
        }

        .logo {
            width: 200px;
            object-fit: cover;
        }

        .clipart {
            width: 300px;
            object-fit: contain;

            @media screen and (max-width: 768px) {
                display: none;
            }
        }
    }
}