@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;700&display=swap');
*{
    font-family: 'Rubik', sans-serif;
    font-size: 1rem;
    line-height: 2rem;
    
}

html, body {
    margin: 0;
    padding: 0;
}

#title {
    background-color: white;
    color: #BF7256;
    padding: 2px;
    align-content: center;
    line-height: 2rem;
    text-align: center;
}

#title h1 {
    font-size: 3rem;
}

#main {
    background-color: #C7D9D7;
    color: #425944;
    margin:0;
    padding: 10px;
    width: auto;
    font-size: 3rem;
    display: flex;
    flex-direction: row;
    justify-content: center;  
}

#img-div {
    align-items: center;
    width: 100%;
    max-width: 450px;
    height: auto;
    margin: 10px;
    padding: 5px;
}

#image {
    width: 100%;
    max-width: 450px;
    padding-top: 0.8rem;
    display: block;
}

#tribute-info {
    width: 400px;
    margin-left: 2px;
    padding: 4px;
    text-align: left;
}

#tribute-link{
    background-color: white;
    color: #425944;
    margin:0;
    padding: 10px;
    width: auto;
    font-size: 1rem;
    display: flex;
    flex-direction: row;
    justify-content: center;    
    text-decoration: none;
    text-align: center;
    
}

#tribute-link:hover{
    text-decoration: none;
    color: #BF7256;
}


/* Mobity first -- Media Queries here */

@media (max-width: 800px) { 
    #title {
        font-size:100%;
    }

    #main {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: auto;
    }

    #tribute-info {
        margin-left: 0px;
        padding: 0;
        text-align: left;
        width: 100%;
    }
}
