:root {
    --light: #FBF8F8;
    --primary: #69AE5D;
    --dark: #3B494C;
}

html {
    font-size: max(.9vw, 16px);
    -webkit-font-smoothing: antialiased;
}

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

body {
    margin: 0;
    font-family: 'Maven Pro', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #1B1B1B;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 700;
}

main {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 100%;
   
    .container {
        padding-top: 3rem;
        padding-bottom: 3rem;
        height: 100%;
        max-width: 90vw;
        width: 100%;
        
        .wrapper {
            display: flex;
            gap: 1.5rem;
        }

        .content {
            width: 50%;
            display: flex;
            flex-direction: column;
            padding: 2rem;
            background-color: var(--light);
            border-radius: 0.625rem;

            iframe {
                height: 25rem;
                border-radius: 0.5rem;
            }
        }

        .buttons {
            display: flex;
            flex-wrap: wrap;
            margin-top: auto;
            padding-top: 1.5rem;
            gap: 1rem;

            a.btn {
                text-decoration: none;
                color: #fff;
                background-color: var(--primary);
                transition: .3s;
                border-radius: .25rem;
                font-weight: 600;
                padding: 0.75rem 1.5rem;

                &:hover {
                    background-color: var(--dark);
                }
            }
        }
    }

    .logo {
        display: inline-block;
        width: max-content;
        display: flex;
        align-items: center;
        gap: 1.5rem;
        margin-bottom: 3rem;
        text-decoration: none;
        
        h4 {
            font-size: 1.125rem;
            text-transform: capitalize;
            color: #3b494c;
            text-decoration: none;
            margin-bottom: 0;
        }

        img {
            width: 6.25rem;
        }
    }
 
}



@media screen and (max-width: 992px) {
    body {
        main {
            .logo {
                width: 100%;

                h4 {
                    font-size: 1rem;
                }

                img {
                    width: 5.25rem;
                }
            }
            .container {
                padding-bottom: 1.5rem;
                padding-top: 1.5rem;
                max-width: calc(100vw - 3rem);

                .wrapper {
                    flex-direction: column;

                    .content {
                        width: 100%;
                        padding: 1.5rem;

                        h1 {
                            font-size: 1.5rem;
                        }

                        iframe {
                            height: 15rem;
                        }
                    }
                }
            }
        }
    }
}