@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;700&family=Quicksand:wght@400;700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    height: 100vh;
    scroll-behavior: smooth;
    overflow-x: hidden;
    font-family: 'Open Sans', sans-serif;
}
.container-tech{
    width: 100%;
    height: 100%;
}
header{
    position: fixed;
    top: 0;
    width: 100%;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #333;
    box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
}
header .lg-tech{
    width: 80px;
    height: 80px;
    overflow: hidden;
    /* border: 2px solid; */
}
.lg-tech img{
    width: 100%;
    height: 100%;
}
header nav{
    position: relative;
    display: flex;
    align-items: center;
    gap: 40px;
}
nav a{
    color: #f0f8ff;
    font-size: 22px;
    text-decoration: none;
}
nav a:hover{
    color: #00ffff;
}

section.home {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}