*{
    margin: 0;
}
html {
    scroll-behavior: smooth;
}
body {
    background-color: rgb(255, 255, 255);
    width: 100%;
    font-family: monospace
}

h1 {
    text-align: center;
    background-color: rgb(208, 223, 239);
    padding-top: 20px;
    padding-bottom: 5px;
    width: auto;
    margin-left: -37px;
    margin-top: -8px;
}
nav {
    padding-left: 30px;

}

nav ul li {
    display: inline-block;
    font-weight: bold;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    word-spacing: 20px;
    font-size: 25px;
}

nav ul li a {
    color: teal;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 0.8em;
}

nav img {
    margin-top: -10px;
    height: 55px;


}
h4{
    text-align: center;
    font-size: 30px;
    font-weight: 900;
    padding-top: 20px;
    padding-bottom: 20px;

}
button{
    background-color: rgb(211, 241, 255);
    border: none;
    color: rgb(0, 0, 0);
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
list-style: none;
    display: inline-block;
    font-size: 20px;
   
    cursor: pointer;
    border-radius: 12px;
    border: 2px solid rgb(0, 0, 0);
     margin-left: 15px;
   margin-right: 15px;
   margin-top: 20px;
}
button:hover{
    background-color: rgb(255, 231, 231);
    color: rgb(0, 0, 0);
}
button a{
text-decoration: none;
color: rgba(0, 0, 0, 0.5);
}

.container {
   
    position: relative;
    max-width: 800px;
    /* Maximum width */
    margin: 0 auto;
    /* Center it */
}

.container .content {
    position: absolute;
    /* Position the background text */
    bottom: 0;
    /* At the bottom. Use top:0 to append it to the top */
    background: rgb(0, 0, 0);
    /* Fallback color */
    background: rgba(0, 0, 0, 0.5);
    /* Black background with 0.5 opacity */
    color: #f1f1f1;
    /* Grey text */
    width: 97.5%;
    /* Full width */
    padding-top: 20px;
    padding-left: 20px;
    padding-bottom: 20px;
   
    /* Some padding */
}
section{
    padding: 50px;

}
#myBtn {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Fixed/sticky position */
    bottom: 20px;
    /* Place the button at the bottom of the page */
    right: 30px;
    /* Place the button 30px from the right */
    z-index: 99;
    /* Make sure it does not overlap */
    border: none;
    /* Remove borders */
    outline: none;
    /* Remove outline */
    background-color: rgb(128, 0, 0);
    /* Set a background color */
    color: white;
    /* Text color */
    cursor: pointer;
    /* Add a mouse pointer on hover */
    padding: 15px;
    /* Some padding */
    border-radius: 10px;
    /* Rounded corners */
    font-size: 18px;
    /* Increase font size */
}

#myBtn:hover {
    background-color: #3639f4;
    /* Add a dark-grey background on hover */
}