* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* border: 1px solid red; */

    /* <uniquifier>: Use a unique and descriptive class name */
    /* <weight>: Use a value from 100 to 900 */
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
}

body {
    width: 100%;
    height: 100vh;

    overflow: visible !important;
    background: -webkit-linear-gradient(45deg, #085078 10%, #85d8ce 90%);
    background: -moz-linear-gradient(45deg, #085078 10%, #85d8ce 90%);
    background: -ms-linear-gradient(45deg, #085078 10%, #85d8ce 90%);
    background: -o-linear-gradient(45deg, #085078 10%, #85d8ce 90%);
    background: linear-gradient(45deg, #085078 10%, #85d8ce 90%);

    background-attachment: fixed;

    color: #fff;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    
    
    
    
    /* align-items: center; */
}

a {
    text-decoration: none;
    color: #fff;
}