
/* Below is the reset rule */
* {
    margin: 0; 
    padding: 0; 
    border: 0; 
    box-sizing: border-box; /* this makes it so 500px is truly 500px all around */
  

}

html{
    font-size: 62.5%;
}

body{
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 2.2rem;
    background-color: gray;
    color: aliceblue;
    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: rgb(255, 255, 255);
    position: absolute;
    top: 2rem; right: 2rem
}

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


h1 strong{
    color: aqua;
}

article{
    background-image: linear-gradient(45deg, #c61f1f, #333);
    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;
}


section{
    position: relative;
}

#display1{
    text-align: center;
    border: 2px solid rgb(255, 255, 255);
    height: 300px;
}

#display1 h3, #display1 div{
display: inline-block;
border: 8px solid yellow;
vertical-align: middle;

}

#display2{
    border: 2px solid rgb(255, 255, 255);
    height: 250px;
    display: flex;
    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: 20px;
    background-color: hotpink;
    margin: 50px 0;
    position: sticky;
    top: 0; left: 0;
}