:root {
    --primary-color1: rgb(41, 124, 149);
    --primary-color2: #35527a;
    --primary-color3: #e6f5fad6;
    --primary-color4: rgb(62, 108, 115);
    --primary-color5: #cfedf0e6;
    --primary-color6: rgb(84, 128, 141);
    --secondary-color1: rgb(214, 35, 4);
    --secondary-color2: #fe4d2d;
    --secondary-color3: #ff9797;
    --secondary-color4: #f67d68;
    --secondary-color5: #fcbebe;
    --secondary-color6: #ee5959;
    --text-black: rgb(69, 77, 83);
    --light-black: rgba(72, 77, 82, 0.985);
    --light-blue: rgb(130, 149, 155);
}

body {
    background-color: #ffffff;
    font-family: Garamond, serif;
    font-weight: 100;
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
}

.buttons-grid {
    width: fit-content;
    position: fixed; 
    right: 0px; 
    bottom: 15px;
    display: inline-block;
    z-index: 10000;
}

.btn {
    background: var(--secondary-color6);
    text-align: center;
    text-decoration: none;
    color: #fff;
    border: 2px solid rgb(210, 210, 210);
    border-radius: 100px;
    transition: 1.5s;
}

.btn:hover {
    color: var(--primary-color1);
    border: 2px solid var(--primary-color1);
    background: var(--secondary-color5);
    transition: 1s;
}

.appointment-btn {
    display: inline-block;
    z-index: 10000;
}


/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    h1 {
        font-size: 18px;
    }

    h2 {
        font-size: 16px;
    }

    p, a {
        font-size: 12px;
    }
    
    #rixdorf {
        font-size: 25px;
    }

    .buttons-grid {
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100vw;
    }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
    h1 {
        font-size: 24px;
    }

    h2 {
        font-size: 22px;
    }

    p, a {
        font-size: 14px;
    }
    
    #rixdorf {
        font-size: 32px;
    }


}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    h1 {
        font-size: 26px;
    }

    h2 {
        font-size: 24px;
    }

    p, a {
        font-size: 15px;
    }
    
    #rixdorf {
        font-size: 37px;
    }

    .buttons-grid {

    }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    h1 {
        font-size: 33px;
    }

    h2 {
        font-size: 30px;
    }

    p, a {
        font-size: 18px;
    }
    
    #rixdorf {
        font-size: 40px;
    }

    
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
    h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 36px;
    }

    p, a {
        font-size: 20px;
    }
    
    #rixdorf {
        font-size: 50px;
    }

}



