* {
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
}
html {
    font-size: 62.5%;
}
body {
    font-family: 'Roboto Condensed', sans-serif;
  
}
header {
    display: flex;
    justify-content: center;
    font-size: 3rem;
}
.header-title {
    text-align: center;
}

h1 {
    font-size: 4rem;   
    margin-top: 29px;
    -webkit-text-stroke: 3px rgb(221 166 4);
    color: rgb(231 201 113);
}
h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 6rem;
}
h4 {
    font-size: 1rem;
    margin-bottom: 42px;
}
.container {
    display: flex;
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
    height: 241px;
    padding-left: 24px;
    padding-bottom: 16px;
}
img {
    border-radius: 10px;
    margin-left: 28px;
    margin-bottom: 29px;
}
article {
    display: inline;
}
.container .image {
    border-radius: 20px;
    margin: 20px 30px 20px 20px;
    width: auto;
    height: 200px;
    display: inline-flex;
}
span {
    background-image: url(/img/trash-can.svg);
    background-position: center;
    background-repeat: no-repeat;
    width: 30px;
    height: 38px;
    position: absolute;
    margin-left: -36px;
    margin-top: -73px;
    background-color: white;
    border-radius: 3px;
}
.button {
    background-color: rgb(227 175 0);
    border: 5px solid rgb(221 166 4);
    color: white;
    border-radius: 9px;
    cursor: pointer;
    font-family: monospace;
    font-size: 1.5rem;
    padding: 12px;
    width: auto;
    height: auto;
    margin-left: 78%;
    margin-bottom: 50px;
    margin-top: 12px;
}
.button:hover {
    border: 5px solid rgb(150, 116, 4);
    background-color: rgb(152, 115, 5);
}

.save-button {
    font-size: 48px;
    border: none;
    background-color: transparent;
    position: relative;
    margin-left: -126px;
    bottom: -6px;
    width: 100px;
}
.delete-button {
    position: relative;
    margin-left: -29px;
}
.arrow-right {
    position: absolute;
    background-repeat: no-repeat;
    margin-left: 88%;
    margin-top: 90px;
    font-size: 37px;
    color: rgb(252, 193, 1);
    background-color: white;
    border-radius: 8px;
    width: 47px;
    height: 55px;
    text-align: center;
}