body {
    margin: 0;
    background-color: #1d1d23;
    font-family: 'Roboto', sans-serif;
    color: white;
    padding: 0;
    font-size: 1.25rem;
}
  
div {
    color: white;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    text-align: center;
    padding: 10px;
}

/* Navigation bar */

.navbar {
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px
}

.navbar-logo {
    width: 125px;
    height: auto;
    margin-left: 10px;
}

.navbar-list {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.navbar-list li {
    margin-left: 40px;
}

.navbar-list li:last-child {
    margin-right: 30px;
}

.navbar-list li a {
    text-decoration: none;
    color: white;
    font-size: 1.5rem;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
}

.navbar-list li a.navbar-button {
    padding: 8px;
    &:hover {
        border-bottom: 2px solid white
    }
}

.navbar-list li a.contact-button {
    background: white;
    padding: 8px 22px;
    display: block;
    border: 2px solid white;
    background-color: transparent;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
    transition: all .3s ease-in-out;
    &:hover {
      background-color: white;
      color: #1d1d23;
    }
}

/* Socials at bottom left */

.socials-list-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    }
    
    .socials-list {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    }
    
    .socials-list li {
    margin-right: 15px;
    }
    
    .socials-list li:last-child {
    margin-right: 0;
    }
    
    .socials-logo {
    width: 40px;
    height: auto;
    transition: transform 0.3s;
    }
    
    .socials-list li:hover .social-logo {
    transform: scale(1.2);
    }

/* Disable default scrollbar */
body {
    overflow: hidden;
  }