/* Stylesheet fpr the text */

html {
    font-family: 'Montserrat', sans-serif;
    color: aliceblue;
    background-color: #222A4E;
    margin: 0%;
    padding: 0%;
}

/* font family */
.montserrat {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
}

.julius-sans one-regular {
    font-family: "Julius Sans One", sans-serif;
    font-weight: 400;
    font-style: normal;
}

/* font size */
.h1 {
    font-size: 45px;
}

.h2 {
    font-size: 35px;
    font-weight: 200;
}

.h3 {
    font-size: 21px;
    font-weight: 200;
}

.h4 {
    font-size: 18px;
    font-weight: bold;
}

.p {
    font-size: 16px;
}

/* font colours */
.p-orange-pink {
    color: #D1795A;
}

.text_center {
    text-align: center;
}

.text_right {
    text-align: right;
}

a:link {
    text-decoration: none;
    color: inherit;
}

a:visited {
    color: inherit;
}

a:hover {
    color: lightgray;
}

/* text align */
.text_center {
    text-align: center;
}

.text_right {
    text-align: right;
}

/* line height */
.line-heigth-170 {
    line-height: 170%;
}


/* responsive */
@media screen and (min-width: 666px) {
    .h1 {
        font-size: 52px;
    }
    
    .h2 {
        font-size: 42px;
        font-weight: 500;
    }
    
    .h3 {
        font-size: 25px;
        font-weight: 500;
    }
    
    .h4 {
        font-size: 20px;
        font-weight: bold;
    }
    
    .p {
        font-size: 16px;
        font-weight: 100;
    }
}

@media screen and (min-width: 1024px) {
    .h1 {
        font-size: 60px;
    }
    
    .h2 {
        font-size: 50px;
        font-weight: 500;
    }
    
    .h3 {
        font-size: 29px;
        font-weight: 500;
    }
    
    .h4 {
        font-size: 24px;
        font-weight: bold;
    }
    
    .p {
        font-size: 17px;
        font-weight: 100;
    }
}