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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #FFF;
    font-family: 'Karla', sans-serif;
	
}

:root {
    --bgcolor : #38761D;
    --accentcolor: #FFFFFF;
	--corbranco: #FFFFFF;
	
}

body {
    background-color: var(--bgcolor);
	'background-image: url("img/Fundo.jpg");
}

.link-tree {
    display: flex;
    flex-direction: column;
	text-align: center;
    align-items: center;
	width: 90vw;
    margin: 60px auto;
    gap: 20px;
	
}
.link-tree img {
    width: 150px;
    height: 140px;
    border-radius: 10%;
}
.link-tree h1 {
    font-size: 2.5rem;
}

.link-tree a {
    
	background-color: var(--accentcolor);
    color: var(--bgcolor);
    width: 100%;
    padding: 15px;
    text-decoration: none;
    text-align: center;
    text-transform: uppercase;
    font-size: 1.1rem;
    font-weight: bold;
    border: solid 2px var(--accentcolor);
    transition: all 0.5s linear;
	'background-image: url("img/Fundo.jpg");
	
	 
	
	
}

.link-tree a:hover {
    background-color: var(--bgcolor) icon;
    color: var(--accentcolor);
	
	
}

@media (min-width: 1024px) {
    .link-tree {
        width: 40vw;
    }
}