* {
    padding: 0;
    margin: 0;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100dvw;
    height: 100dvh;
    box-sizing: border-box;
    padding: 40px;
    gap: 40px;

    & section:nth-child(1) {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 90vw;
        height: 80vh;
        border-radius: 40px;
        background-color: #272E7B;

        & div {
            width: 40vw;
            height: 40vh;
            background-image: url('/src/img/logomarca.png');
            background-position: center;
            background-repeat: no-repeat;
            background-size: contain;
        }
    }

    & section:nth-child(2) {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 40px;
        width: 90vw;

        & div {
            width: 200px;
            height: 80px;
            background-image: url('/src/img/logoDeveloper.png');
            background-position: center;
            background-repeat: no-repeat;
            background-size: contain;
        }
    }
}