* {
    margin: 0;
    padding: 0;
    font-family: 'Nunito', sans-serif;
    font-weight: 400;
    max-height: 999999px;
    transition: all 0.15s ease-in-out;
}

body::-webkit-scrollbar {
    display: none;
}

img {
    transition: all 0s ease-in-out;
}

.visible {
    display: inherit;
}

.invisible {
    display: none !important;
}

a {
    text-decoration: none;
    color: #538DCC;
    transition: all 0.05s ease-in-out;
}

h1 {
    color: #00363B;
    font-size: 45px;
    font-weight: 800;
}

h2 {
    color: rgba(0, 54, 59, 0.6);
    font-style: normal;
    font-weight: 400;
    margin: 25px auto 0 auto;
    font-size: 22px;
    line-height: 1.6em;
}

.constraint {
    position: relative;
    min-width: 1100px;
    max-width: 1600px;
    width: 80%;
    margin: 0px auto;
}

@media only screen and (max-device-width: 500px) {

    .constraint {
        min-width: inherit;
        width: 95%;
    }

    h1 {
        width: 90%;
        margin: 0 auto;
        text-align: center;
        font-size: 40px;
    }

    h2 {
        width: 90%;
        margin: 20px auto 0 auto;
        text-align: center;
        font-size: 19px;
        line-height: 1.45em;
    }
}