@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@1,300&display=swap');

*{
    margin: 0;
    padding: 0;
}

body{
    background-color: #c5e0c1;
}

a{
    text-decoration:none;
    color:white;
    font-size:15px;
    font-family: 'Raleway', 'Georgia', 'Sans-serif';}

a:hover{
    color:#454f43;
    transition-duration: 500ms;
}

#menu {
    text-align: center;
    background-color: #c5e0c1;
    color: white;
    font-family: 'Raleway', 'Georgia', 'Sans-serif';
    padding: 15px 0px 15px 0px;
    width: 100%;
    list-style: none;
    display: none;
}

#dropdown {
    color: white;
    background-color: #c5e0c1;
    text-align: center;
    width: 100%;
    font-size: 10px;
}

#menu > li {
    display: inline;
    padding: 10px 30px 10px 30px;
    border-radius: 5px;
}

#menu > li:hover {
    background-color: rgba(255,255,255,0.2);
}

p {
    text-align: center;
    font-family: 'Sans-serif', 'Arial';
    color: #6f806c;
}

h1 {
    text-align: center;
    font-family: 'Sans-serif', 'Arial';
    color: #6f806c;
    margin-bottom: 20px;
    font-size: 25px;
}

#intro {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.2);
    padding: 30px 30px 30px 30px;
    border-radius: 10px;
}

#copyright p {
    position: absolute;
    font-size: 13px;
    left: 50%;
    top: 95%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}