@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap');


:root{
    --main-color: #059ccd;
    --primary-color: #2a8eae;
    --secondary-color: #2d5c74;
    --light-secondary-color: #77cbf5;
    --text-color: #c8c8c8;
    --secondary-text-color: #7e7d7f;

}

*{
    margin: 0;
    padding: 0;
    outline: none;
    border: none;
    box-sizing: border-box;
}

#button{
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    border-radius: 26px;
    border: none;
    outline: none;
    background-color: rgb(35, 84, 116);
    color: white;
    cursor: pointer;
    padding: 15px;
}

#button:hover{
    background-color: #25a9ad;
}

body{
    background-image: url("/img/logo_circle.jpg");
    background-color: #303133;
    background-repeat: no-repeat;
    background-size: auto;
    background-blend-mode: darken;
    background-position-x: 10rem;
    background-position-y: 5rem;
    background-attachment: fixed;

    font-family: "Figtree";
    font-size: 20px;
    color: var(--text-color);


}

html{
    scroll-behavior: smooth;
}

@media(max-width: 895px){
    body p{
        font-size: 17px;
    }
    body{
        background-attachment: fixed;
        background-position-x: 2rem;
        background-position-y: 2rem;
    }
}