@import "styles/variables.css";


header {
    background: linear-gradient(40deg, var(--turquoise-color), var(--cyan-color));
    padding: 10px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    height: 40px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    min-width: 200px;
}

.logo {
    border-radius: 10px;
    height: 45px;
}

header ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0;
}

header ul li {
    display: inline;
}

header ul li a {
    text-decoration: none;
    padding: 0.1rem 0.5rem;
    display: block;
    color: var(--black-color);
}

header ul li a:hover {
    color: var(--purple-color);
}

body {
    background: linear-gradient(40deg, var(--black-color), var(--blaclkLite-color), var(--black-color));
    display: flex;
    flex-direction: column;
    height: 100vh;
    min-width: 200px;
}

main {
    flex: 1 1 0;
    word-wrap: break-word;
    min-width: 200px;
    height: 100vh;
}

.imgProjeto {
    height: 150px;
    width: 275px;
}

footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(40deg, var(--cyan-color), var(--turquoise-color));
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

main p, main h2 {
    color: var(--cyan-color);
    font-size: large;
}

h1, h3 {
    color: var(--turquoise-color);
}

li, footer p {
    font-size: 20px;
}

main ul {
    list-style: none;
}

#listTec {
    display: flex;
    justify-content: center;
    max-width: 480px;
}

.logoTec {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

