@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital@0;1&display=swap');

* {
    margin: 0;
    box-sizing: border-box;
    font-family: 'Montserrat';
    color: #fff;
}

body {
    background-color: #202024;
}

header {
    background-color: #202024;
    display: flex;
    justify-content: space-between;
    height: 100px;
    border-bottom: 1px solid #535353;
    position: sticky;
    top: 0;
}

.logo {
    display: flex;
    align-items: center;
}

img {
    width: 5rem;
}

h1 {
    font-size: 1.3rem;
}

nav ul {
    list-style-type: none;
    margin-top: 2.5rem;
    margin-right: 1rem;
    
}

nav li {
    display: inline;
    margin: 10px;
}

a {
    text-decoration: none;
}

.title{
    text-align: center;
    margin-top: 10rem;
}

.titleP{
    text-align: center;
    margin-top: 10px;
}

#About {
    text-align: center;
    margin-top: 12rem;
}

.skillsTitle {
    text-align: center;
    margin-top: 12rem;
}

.skillsOfCompany {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.skill {
    text-align: center;
    padding: 5rem;
    background-color: #303034;
    border-radius: 1rem;
}

.skill i {
    font-size: 4rem;
}

footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: #111;
    padding: 2rem 1.5rem 1.8rem;
}

footer ul, li {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-top: 0.3rem;
}