* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
  scroll-behavior: smooth;
}

body {
    background-color: black;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;

}

header {
    width: 100vw;
    height: 20vh;
    padding: 1%;
    text-align: start;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
header h1 {
    font-size: 4em;
    color: white;
}

footer {
    width: 100vw;
    height: 20vh;
    padding: 1%;
    text-align: start;
    display: flex;
    flex-direction: column;
    justify-content: center;
    justify-self: flex-end;
}

.projeto {
    width: 50%;
    height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.topo {
    display: flex;
}
.topo img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}