:root {
    --color-white: #ffffff;

    --color-background: #f1f1f1;

    --color-green: #28b76b;
}

@font-face {
    font-family: Google_sans;
    src: url(../fonts/GoogleSans-Regular.ttf);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100%;
    height: 100%;
    /* font-family: Roboto-Regular;*/
    font-weight: 400;
    font-size: 17px;
    font-family: sans-serif;
}


.wrapper {
    position: relative;
    width: 680px;
    height: auto;
    min-height: 690px;background-color:white;
    max-width: 100%;
    margin: 0 auto;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }to {
        opacity: 1;
    }
}

/*menu*/

.dropbtn {
    background-color: #04AA6D;
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 260px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1000;
    /* margin-top:-130px;*/
}

    /* Links inside the dropdown */
    .dropdown-content a {
        color: black;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
    }

        /* Change color of dropdown links on hover */
        .dropdown-content a:hover {
            background-color: #ddd;
        }

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
    background-color: #3e8e41;
}


#copyright {
    width: 100%;
    height: 50px;
    margin: auto;
    padding: 0;
    clear: both;
    font-size: 14px;
    letter-spacing: 0;
    background: #1f2224;
    border-top: 1px solid #444;
    color: #7A9999;
}