@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100..900&display=swap');

body{
    font-family: "Roboto Slab", serif;
    background-color: rgb(49, 54, 63);
    color:  white;
}

p{
    color: white;
    font-family: 'Courier New', Courier, monospace;
}

header{
    background-color: rgb(118, 171, 174);
    text-align: center;
    height: 200px;
    color: rgb(49, 54, 63);
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    position: sticky;
}

main{
    background-image: url(./img/brian\ and\ skyline.avif);
    background-size: cover;

    text-align: center;
    height: 450px;
    color: rgb(118, 171, 174);
    border-radius: 20px;
    flex-wrap: wrap;
    overflow: scroll;
}

footer{
    background-color: rgb(118, 171, 174);
    text-align: center;
    height: 200px;
    color: rgb(49, 54, 63);
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    position: sticky;
}

footer img{
    height: 170px;
    width: 300px;
    border-radius: 10px;
}

header img{
    height: 170px;
    width: 200px;
}