        @charset "utf-8";

        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400&display=swap');

        * {
            -moz-box-sizing: border-box;
	        -webkit-box-sizing: border-box;
	        box-sizing: border-box;
            background-color: #edf5ef;
        }
        
        body {
            overflow: hidden;
        }
        
        section {
            text-align: center;
            padding-top: 10%;
        }

        h1 {
            font-family: 'Poppins', Helvetica, sans-serif;
            font-size: 2rem;
            color: #000;
            line-height: 1.2em;
            margin-top: 50px;
        }
        
        p {
            font-family: 'Poppins', Helvetica, sans-serif;
            font-size: 1rem;
            font-weight: 300;
            color: #000;
            margin: 30px 0px 50px;
            line-height: 1.5em;
            padding-right: 10%;
            padding-left: 10%;
        }
        
        img {
            width: 275px;
            height: auto;
        }

        #cursief {
            color: #F2F0C9;
            font-style: italic;
        }
        
        #contactButton:link, #contactButton:visited {
            font-family: 'Poppins', Helvetica, sans-serif;
            font-size: 0.875rem;
            font-weight: 400;
            text-transform: uppercase;
            border-radius: 20px;
            padding: 10px 20px;
            color: #ffffff;
            background-color: #51A961;
            text-decoration: none;
            letter-spacing: 0.5px;
            -webkit-transition-duration: 0.4s;
        }

        #contactButton:hover {
            color: #111426;
            background-color: #F2F0C9;
        }
        
        .container {
            max-width: 1200px;
            min-width: 320px;
            margin: 0 auto;
        }

        @media screen and (min-width: 980px) {
            
            p {
                padding-right: 20%;
                padding-left: 20%;
            }
        }