* {
    margin: 0;
    padding: 0;
}

body{
    font-family: "Segoe UI", sans-serif;
    /*font-family: “Comic Sans MS”, “Comic Sans”, cursive;*/
    background: #282634;
}

header {
    height: 100vh;
    background: #282634;
    color: white;
}

.navbar {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0, 0.8);
    overflow-x: hidden;
    transition: 0.5s;

    display: grid;
    place-items: center;
}

.navbar a {
    text-decoration: none;
    font-size: 45px;
    color: #DCDCDC;
    display: block;
    transition: 0.5s;
  }

.navbar a:hover, .navbar a:focus {
    color: #FF4057;
}

.navbar-content {
    display: grid;
    place-items: center;
}

.navbar-content a {
    margin: 0.5em;
}

.navbar .closebtn {
    position: absolute;
    top: 20px;
    right: 45px;
}

#nav-icon {
    position: fixed;
    color: #DCDCDC;
    margin: 32px 0 0 40px;
    font-size: 30px;
    transition: 0.5s;
}

#nav-icon:hover {
    color: #FF4057;
}

.logo {
    display: flex;
    justify-content: center;
}

.info {
    text-align: center;
    margin: 3% 25% 5% 25%;
    color: #DCDCDC;
}

.scroll-down {
    display: grid;
    place-items: center;
}

.scroll-down a {
    font-size: 35px;
    color: #DCDCDC;
    transition: 0.5s;
}

.scroll-down a:hover {
    color: #FF4057;
}

/*Scrollbar*/
::-webkit-scrollbar{
    width: 8px;
    border-radius: 5px;
  }
  
  ::-webkit-scrollbar-track{
    background: black; 
    border-radius: 5px;
  }
  
  ::-webkit-scrollbar-thumb{
    background: #DCDCDC;
    border-radius: 5px; 
  }
  
  ::-webkit-scrollbar-thumb:hover{
    background: #FF4057; 
  }

@media screen and (max-width: 600px){
    .navbar-content a {
        margin: 0% 35% 2% 35%;
    }
}
