/* Roboto Schriftarten */
@font-face {
    font-family: 'Roboto';
    src: url('Schriftarten/Roboto-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('Schriftarten/Roboto-ThinItalic.ttf') format('truetype');
    font-weight: 100;
    font-style: italic;
}

@font-face {
    font-family: 'Roboto';
    src: url('Schriftarten/Roboto-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('Schriftarten/Roboto-LightItalic.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: 'Roboto';
    src: url('Schriftarten/Roboto-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('Schriftarten/Roboto-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'Roboto';
    src: url('Schriftarten/Roboto-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('Schriftarten/Roboto-MediumItalic.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
}

@font-face {
    font-family: 'Roboto';
    src: url('Schriftarten/Roboto-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('Schriftarten/Roboto-BoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: 'Roboto';
    src: url('Schriftarten/Roboto-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('Schriftarten/Roboto-BlackItalic.ttf') format('truetype');
    font-weight: 900;
    font-style: italic;
}

/* Outfit Schriftarten */
@font-face {
    font-family: 'Outfit';
    src: url('Schriftarten/Outfit-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Outfit';
    src: url('Schriftarten/Outfit-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'Outfit';
    src: url('Schriftarten/Outfit-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Outfit';
    src: url('Schriftarten/Outfit-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Outfit';
    src: url('Schriftarten/Outfit-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Outfit';
    src: url('Schriftarten/Outfit-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Outfit';
    src: url('Schriftarten/Outfit-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Outfit';
    src: url('Schriftarten/Outfit-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Outfit';
    src: url('Schriftarten/Outfit-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

:root{
    --bgblue: #04113c;
    --lightPurple: #8D8CDA;
    --darkBlue: #030d2f;
    --greenish: #6ec9ca;
}

body{ 
    background-color:var(--bgblue); 
    min-width: fit-content;
    padding: 0;
    margin: 0;
}

main{
    margin: 0 auto;
    width: 1069.61px;
}

a{
    text-decoration: none;
    transition: all 0.3s ease; 
}

a:hover{
    transform: scale(1.05); 
}

a:active{
    transform: scale(0.95);
}

button{
    text-align: center;
    transition: all 0.3s ease; 
}

button:hover{
    transform: scale(1.05); 
}
button:active{
    transform: scale(0.95);
}

h1 {
    color: white;
    font-size: 70px;
    line-height: 100%;
    font-weight: 700;
    font-family: "Outfit";
    text-transform: capitalize;
}

h2 {
    color: white;
    font-size: 50px;
    line-height: 100%;
    font-weight: 700;
    font-family: "Outfit";
    text-transform: capitalize;
}

h3{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: white;
}

h4{
    font-family: 'Outfit';
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    text-transform: uppercase;
    color: white;
}

h4.desktop{
    display: block;
}

h5{
    font-family: 'Outfit';
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    color: white;
}

h5.mobile{
    display: none;
}

p{
    font-family: 'Outfit';
    font-weight: 400;
    color: white;
    line-height: 28px;
    font-size: 18px;
}

p2{
    font-family: 'Outfit';
    font-weight: 650;
    color: white;
    line-height: 28px;
    font-size: 18px;
}

.navbar{
    float: left;
    height: 46.67px;
    padding-top: 70px;
    width: 1069.61px;
    .leftNavbar{
        float: left;
        width: 50%;
        height: 46.67px;
        display: flex;
        justify-content: left;
        align-items: center;
    }
    .rightNavbar{
        float: right;
        height: 46.67px;
        width: 50%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}

.footer{
    padding-top: 200px;
    width: 100%;
    float: left;
    .footerTop{
        display: flex;
        justify-content: center;
        background-color: var(--darkBlue);
        width: 100%;
    }
        .footerCenter{
            width: 1069.61px; 
            display: flex;
            justify-content: space-between;
            padding-top: 20px;
            padding-bottom: 50px;
    }   

    .footerBottom{
        display: flex;
        justify-content: center;
        width: 100%;
        background-image: linear-gradient(to bottom right, var(--greenish), var(--lightPurple));
    }
}








/* typical breakpoints: <600, >601, >768, >992, >1200 */


/*tablet*/

@media only screen and (min-width: 601px) and (max-width: 1200px){
    main{
        width: 530px;
    }

    h1{
        font-family: 'Outfit';
        font-style: normal;
        font-weight: 700;
        font-size: 32px;
        line-height: 100%;
        text-transform: capitalize;
        color: #FFFFFF;
    }

    h2{
        font-family: 'Outfit';
        font-style: normal;
        font-weight: 700;
        font-size: 24px;
        line-height: 100%;
        text-transform: capitalize;
        color: #FFFFFF;
    }

    h3{
        font-family: 'Roboto';
        font-style: normal;
        font-weight: 600;
        font-size: 14px;
        line-height: 20px;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: #FFFFFF;
    }

    h4.desktop{
        display: none;
    }
    
    h5{
        font-family: 'Outfit';
        font-style: normal;
        font-weight: 600;
        font-size: 15px;
        line-height: 15px;
        color: white;
    }
    
    h5.mobile{
        display: block;
    }

    p{
        font-family: 'Roboto';
        font-style: normal;
        font-weight: 400;
        font-size: 14px;
        line-height: 17px;
        color: #FFFFFF;
    }

    .navbar{
        float: left;
        height: 26.3px;
        padding-top: 37px;
        width: 530px;
        .leftNavbar{
            display: none;
        }
        .rightNavbar{
            float: left;
            height: 46.67px;
            width: 530px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
    }


    
    .footer{
        float: left;
        padding-top: 120px;
        width: 100%;
        .footerTop{
            display: flex;
            justify-content: center;
            background-color: var(--darkBlue);
            width: 100%;
        }
            .footerCenter{
                width: 530px; 
                display: flex;
                justify-content: space-between;
                padding-top: 20px;
                padding-bottom: 50px;
                .dienstleistungenUnten{
                    display: none;
                }
        }   
    
        .footerBottom{
            display: flex;
            justify-content: center;
            width: 100%;
            background-image: linear-gradient(to bottom right, var(--greenish), var(--lightPurple));
        }
    }
}







/* mobile */

@media only screen and (min-width: 430px) and (max-width: 600px){

    main{
        width: 355px;
    }

    h1{
        font-family: 'Outfit';
        font-style: normal;
        font-weight: 700;
        font-size: 32px;
        line-height: 100%;
        text-transform: capitalize;
        color: #FFFFFF;
    }

    h2{
        font-family: 'Outfit';
        font-style: normal;
        font-weight: 700;
        font-size: 24px;
        line-height: 100%;
        text-transform: capitalize;
        color: #FFFFFF;
    }

    h3{
        font-family: 'Roboto';
        font-style: normal;
        font-weight: 600;
        font-size: 14px;
        line-height: 20px;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: #FFFFFF;
    }

    h4.desktop{
        display: none;
    }
    
    h5{
        font-family: 'Outfit';
        font-style: normal;
        font-weight: 600;
        font-size: 15px;
        line-height: 15px;
        color: white;
    }
    
    h5.mobile{
        display: block;
    }

    p{
        font-family: 'Roboto';
        font-style: normal;
        font-weight: 400;
        font-size: 14px;
        line-height: 17px;
        color: #FFFFFF;
    }

    .navbar{
        float: left;
        height: 26.3px;
        padding-top: 37px;
        width: 355px;
        .leftNavbar{
            display: none;
        }
        .rightNavbar{
            float: left;
            height: 46.67px;
            width: 355px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
    }


    
    .footer{
        float: left;
        padding-top: 120px;
        width: 100%;
        .footerTop{
            display: flex;
            justify-content: center;
            background-color: var(--darkBlue);
            width: 100%;
        }
            .footerCenter{
                width: 355px; 
                display: flex;
                justify-content: space-between;
                padding-top: 20px;
                padding-bottom: 50px;
                .dienstleistungenUnten{
                    display: none;
                }
        }   
    
        .footerBottom{
            display: flex;
            justify-content: center;
            width: 100%;
            background-image: linear-gradient(to bottom right, var(--greenish), var(--lightPurple));
        }
    }
}

/* small mobile phones */

@media only screen and (max-width: 429px){ 
    main{
        width: 290px;
    }

    h1{
        font-family: 'Outfit';
        font-style: normal;
        font-weight: 700;
        font-size: 24px;
        line-height: 28px;
        text-transform: capitalize;
        color: #FFFFFF;
    }

    h2{
        font-family: 'Outfit';
        font-style: normal;
        font-weight: 700;
        font-size: 20px;
        line-height: 100%;
        text-transform: capitalize;
        color: #FFFFFF;
    }

    h3{
        font-family: 'Roboto';
        font-style: normal;
        font-weight: 600;
        font-size: 10px;
        line-height: 20px;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: #FFFFFF;
    }

    h4.desktop{
        display: none;
    }
    
    h5{
        font-family: 'Outfit';
        font-style: normal;
        font-weight: 600;
        font-size: 13px;
        line-height: 15px;
        color: white;
    }
    
    h5.mobile{
        display: block;
    }

    p{
        font-family: 'Roboto';
        font-style: normal;
        font-weight: 400;
        font-size: 10px;
        line-height: 13px;
        color: #FFFFFF;
    }

    .navbar{
        float: left;
        height: 26.3px;
        padding-top: 37px;
        width: 290px;
        .leftNavbar{
            display: none;
        }
        .rightNavbar{
            float: left;
            height: 46.67px;
            width: 290px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
    }


    
    .footer{
        float: left;
        padding-top: 100px;
        width: 100%;
        .footerTop{
            display: flex;
            justify-content: center;
            background-color: var(--darkBlue);
            width: 100%;
        }
            .footerCenter{
                width: 290px; 
                display: flex;
                justify-content: space-between;
                padding-top: 20px;
                padding-bottom: 50px;
                .dienstleistungenUnten{
                    display: none;
                }
        }   
    
        .footerBottom{
            display: flex;
            justify-content: center;
            width: 100%;
            background-image: linear-gradient(to bottom right, var(--greenish), var(--lightPurple));
        }
    }
}
