#scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #04AA6D;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: none;
}

/* CSS for navigation bar */
header {
    background-color: white;
    margin: 0px;
    text-align: left;
    display: grid;
    grid-template-columns: auto auto;
    grid-template-rows: auto;
    position: fixed;
    width: 100%;
    z-index: 1000;
    min-width: 1440px;
}

#logo {
    grid-row: 1/2;
    grid-column: 1/2;
}

#button {
    padding: 10px 10px 10px 10px;
    grid-column: 2/3;
    grid-row: 1/2;
    display: inline;
}

a:link {
    color: white;
}

a:visited {
    color: white;
}

#button a {
    text-decoration: none;
    display: inline-block;
    margin-top: 15px;
    padding-right: 30px;
    padding-left: 30px;
    padding-top: 20px;
    grid-column: 2/3;
    grid-row: 2/3;
    color: black;
    position: relative;
}

#button a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background-color: black;
    transition: width 0.3s ease;
}

#button a:hover::after {
    width: 100%;
    text-decoration: none;
}

.current-page {
    background-color: #ADD8E6;
    padding: 10px;
}

@media screen and (max-width: 768px) {
    header {
        grid-template-columns: auto;
    }

    #button {
        grid-column: 1/2;
    }

    #button h3 {
        margin-top: 0;
        margin-bottom: 0;
    }

    #button a {
        display: block;
        text-align: center;
    }

    #button a::after {
        display: none;
    }

    .dropdown-content {
        width: 100%;
    }

    #site {
        width: 100%;
    }
}

#container {
    display: grid;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr;
    background-color: rgba(0, 0, 0, 0.64);
}


#intro {
    grid-column: 1/2;
    grid-row: 1/2;
    margin: 10px;
}

#image1 {
    grid-column: 2/3;
    grid-row: 1/2;
    margin: 6px;
}

body {
    background: url(golden.jpg) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    color: white;
    margin: 0px;
    font-family: "Times-New-Roman", serif;
}

#section-1 {
    background-image: url("vid.gif");
    min-height: 750px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.dropbtn {
    color: black;
    padding: 16px;
    font-size: 18.72px;
    border: none;
    background-color: white;
    font-family: "Times-New-Roman", serif;
    font-weight: bold;
}
p{
    font-size: 20px;
}




html {
    scroll-behavior: smooth;
}
