@media screen and (min-width: 768px){
    body {
        height: 100vh;
    }

    main {
        position: relative;

        display: flex;
        justify-content: center;
        align-items: center;

        height: 550px;
    }

    header {
        position: absolute;
        top: 0;
    }

    .wrapper {
        flex-direction: row-reverse;

        width: 700px;
        height: 500px;

        padding: 25px;
        padding-left: 0;
    }

    .wrapper .photo {
        margin-top: 0;
        height: 303px;
        width: 271px;
    }

    .calendar {
        height: 304px;
        width: 400px;
    }

    .calendar .header-calendar .month{
        width: 360px;
    }

    footer {
        position: absolute;
        bottom: 0;
    }

}