@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body{
    margin: 0;
    padding: 0;
    color: white;
    background-color: #1a1a1a;

    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 100;
    font-style: normal;
}

#container{
    margin: 0 auto;
    width: 90%;
    max-width: 900px;
    text-align: right;

    img{
        width: 100%;
        height: auto;
    }

    p{
        padding: 0 20px;
    }

    a{
        color: #29abe2;
        text-decoration: none;

        :hover{
            text-decoration: none!; 
        }
    }
}