@font-face {
    font-family: "Montserrat", sans-serif;
    font-style: normal;
    font-weight: 400;
    src: url(fonts/Montserrat-VariableFont_wght.ttf), format("ttf");
}

body{
    background-color: rgb(200,200,200);
    font-size: 16px;
    color: rgb(30, 30, 39)
}

.container{
    background-color: rgb(186, 178, 169);
    border: 1px solid rgb(100,100,100);
    padding: 10px;
    width: 400px;
    margin: 25px auto 0px auto; 
    border-radius: 5px;
    box-shadow: 0px 0px 5px white;
}

.container img{
    width: 300px;
    margin: 0px auto;
    display: block;
    border-radius: 15px;
    box-shadow: 0px 0px 5px gray;
    align-items: center;
    justify-content: center;
}

.container h1{
    text-shadow: 0px 0px 10px darkgrey ;
    margin-top: 0px;
    font-weight: lighter;
}

.footer-container{
    width: 400px;
    margin: 0px auto;
    text-align: center;
    font-size: 0.8em;
}

.footer-container a{
    color: rgb(50,50,50);
    text-shadow: 0px 0px 5px white;
    margin-left: 3px;
    margin-right: 3px;
}

.box{
    width: 150px;
    height: 150px;
    background-color: dodgerblue;
    transition: background-color 1s, width 1s, height 1s;
}

.box:hover{
    width: 300px;
    height: 300px;
    background-color: gainsboro;
}