@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');
:root{
    --light-blue: rgb(99, 185, 233);
    --light-yellow: rgb(254, 201, 0);
    --light-red: rgb(210, 27, 16);
    --dark-blue: rgb(37, 61, 107);
    --white-color: white;
    --main-roboto-font: 'Roboto', sans-serif;
}
body{
    margin:0;
    padding:0;
    background-color: white;
    box-sizing: border-box;
    font-family: var(--main-roboto-font);

    background-image: url(media/backg.png);
    background-position: center; 
    background-repeat: no-repeat; 
    background-size:cover;
}

.main-container{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    width: 100%;
}


.linktree-container{
    height: auto;
    width: 100%;
    display: flex;
    justify-content: start;
    flex-direction: column;
    align-items: center;
}

.linktree-container a{
    width: 300px;
    margin: 1.4rem;
    text-decoration: none;
    color: var(--dark-blue);
    font-size: 1.3rem;
}

.link-dimensions{
    border-radius: .8rem;
    height: 3rem;
    background-color: white;
    box-shadow: 1px 5px 10px var(--dark-blue);
}

.b1{
    border: 3px solid var(--light-blue);
        background-color: white;

}

.b2{
    border: 3px solid var(--light-yellow);
        background-color: white;

}

.b3{
    border: 3px solid var(--light-red);
    background-color: white;
}


.flex-cc{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}


