@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #FFF;
    font-family: 'Roboto', sans-serif;
}

:root {
    --bgcolor : #00ba31;
    --accentcolor: #0a5826;
    --button: #fff;
}


body {
    background-color: var(--bgcolor);
}

.link-tree {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90vw;
    margin: 40px auto;
    gap: 20px;
}
.link-tree img {
    width: 150px;
    height: auto;
}

.link-tree h1 {
    font-size: 2.5rem;
}

.link-tree a.logo {
    background-color: transparent;
    border: solid 2px transparent;
}

.link-tree a:hover:hover.logo {
    background-color: transparent;
    border: solid 2px transparent;
}




.link-tree a {
    background-color: var(--accentcolor);
    color: var(--button);
    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.3s linear;
    
}

.link-tree a:hover {
    background-color: var(--bgcolor);
    color: var(--accentcolor);
}


.link-tree p{
    text-align: center;
}

body::-webkit-scrollbar {
  width: 10px;               
}

body::-webkit-scrollbar-track {
  background: green;        
}

body::-webkit-scrollbar-thumb {
  background-color: var(--accentcolor);    
  border-radius: 20px;       
  border: 2px solid green;  
}

@media (min-width: 1024px) {
    .link-tree {
        width: 40vw;
    }
}

@media (max-width: 782px) {
    .link-tree h1 {
        font-size: 1.5rem;
    }
}