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

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

:root {
    --bgcolor : #f1eee2;
    --accentcolor: #e2ae8f;
}

body {
    background-color: var(--bgcolor);
}

.link-tree-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90vw;
    margin: auto;
    margin-top: 40px;
    gap: 20px;
}

.link-tree-logo img {
    width: 170px;
    height: 170px;
    border-radius: 50%;
}

.link-tree {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90vw;
    margin: auto;
    gap: 20px;
}

.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;
}

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

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