* {
    margin: 0; padding: 0; border: 0; box-sizing: border-box;
}

html {
    font-size: 62.5%; /* 10/16 16px is the default font size */
}

body {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 1.4rem; /* rem is = 10px, 1.5rem = 15px; 3rem = 30px */
    background-color: #232;
    color: #eee;
    min-height: 100vh;
    border: 4px solid orange;
}

#disc {
    width: 20rem; height: 20rem;
    background-image: linear-gradient(45deg, #141, #363);
    border-radius: 50%;
    text-align: center;
    line-height: 20rem;
    font-size: 12rem;
    font-weight: bold;
    color: #222;
    position: absolute; /* being specific */
    right: 2rem; top: 2rem;
    transform: rotate(10deg);
}

h1 {
    margin: 12px;
    width: calc(100% - 25rem);
    font-weight: normal;
    line-height: 1.4;
    font-size: 4rem;
}

h1 strong {
    color: orangered;
}

article {
    background-image: linear-gradient(220deg, #121, #343);
    margin: 2rem;
    padding: 12px;
}

h2 {
    text-align: center;
    border-bottom: 2px solid #eee;
    padding: 8px;
    font-weight: normal;
    text-transform: lowercase;
    letter-spacing: .8rem;
    font-size: 2.5rem;
}

article h3, article div {
    border: 8px solid hotpink;
    width: 16vw;
    aspect-ratio: 1/1; /* keeps them squared */
}

section {
    position: relative;
}

#display1 {
    text-align: center;
    border: 2px solid skyblue;
    height: 250px;
    margin-bottom: 12px;
}

#display1 h3, #display1 div { /* can also write as #display1 * */
    display: inline-block;
    border: 8px solid yellow;
    vertical-align: middle; 
}

#display2 {
    border: 2px solid blue;
    height: 250px;
    display: flex; /* goes with the parent */
    margin-bottom: 12px;
    justify-content: center;
    gap: 5px;
}

#display2 * {
    height: 15vw;
}

#display3 {
    border: 2px solid skyblue;
    margin-bottom: 12px;
    text-align: center;
    height: 250px;
}

#display3 * {
    display: inline;
    padding: 20px;
}

h3 {
    color: yellow;
    position: absolute;
    top: 10px; left: 10px;
}

#display3 h3 {
    border: 8px solid white;
    position: relative;
    top: 100px; left: -100px;
}

.bar {
    height: 50px;
    background-color: hotpink;
    margin: 50px 0;
    position: sticky;
    top: 0px; left: 0;
    text-align: center;
    color: #222;
}

.cougar {
    width: 100%;
    height: 100px;
    border: 4px solid teal;
    background-image: url(../images/bobcat_2.png);
    background-size: contain;
    transform: skew(-20deg, 0);
}

.bobcat {
    transform: translate(300px, 20px);
}