.containerr {
    display: grid;
    grid-template-rows: 100px;
    grid-template-columns: 200px 200px 200px 200px;
    font-size: 20px;
}
.item {
    & > a {
      color: tomato;
      &:hover,
      &:focus {
        color: ivory;
        background-color: tomato;
      }
    }
}
#item-1.containerr {
    grid-row: 1 / 2;
    grid-column: 1 / 2;
    justify-self: center;
}
#item-2 {
    grid-row: 2 / 3;
    grid-column: 1 / 2;
    justify-self: center;
}
#item-3 {
    grid-row: 3 / 4;
    grid-column: 1 / 2;
    justify-self: center;
}
#item-4 {
    grid-row: 4 / 5;
    grid-column: 1 / 1;
    justify-self: center;
}


head {
    display: none;
}
body {
    background-color: #FBE9D0;
}
h1 {
    color: rgb(228, 60, 18);
    font-family: "Noto Serif", sans-serif;
    text-align: center;
}
h2 {
    color: hsl(12, 85%, 48%);
}
h3 {
    color: black;
    text-decoration: dotted underline;
    padding: 1pt 1px 0.03cm 1px;
    margin: 20px 20px 20px 20px;
    text-align: center;

}
p, li {
    color: var(--text-color, #244855)
}
section p {
    color: #244855;

}
section {
    background-color: #90AEAD;
    /* padding: inner space of element */
    padding-top: 10px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 10px;

    /* margin: outer space surrounding element */
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: 20px;
    margin-right: 20px;

    position: static;

}
form {
    background-color: color-mix(in srgb, #34c9eb 0%, white);
    margin: auto;
    font-size: 2em;
}

img {
    border-style: outset;
    border-width: 7px;
    border-color: whitesmoke;
    border-radius: 3px;

    width: 30%;
    height: 30%;

    max-width: 50%;
    max-height: 50%;
}
@media (max-width: 1250px) {
    body {
        background-color: white;
    }
}

.submitBtn:hover {
    background-color: antiquewhite;
}
.submitBtn:active{
    box-shadow: 2px 2px 5px color(srgb red white blue);
}

textarea {
    height: 10vh;
    width: 25vw;
}
#box{
    border: 5px solid;
    height: 120px;
    width: 200px;
    display: block;
    position: relative;
    top: 10px; left: 10px;
}


.container {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    flex-wrap: nowrap;
}
.boxx {
    width: 350px;
    height: 150px;
    border-radius: 15px;
    font-size: 1.5em;
}
.container > #box1 {
    background-color: hsl(0, 100%, 70%);
}
.container > #box2 {
    background-color: hsl(52, 100%, 70%);
}
.container > #box3 {
    background-color: hsl(201, 100%, 70%);
}
li[class="a"] {
    color: red;
}
h2 ~ p {
    color: black;
}
h2 + p {
    font-size: 17px;
}
* {
    margin: auto;
}
h1:has(+ h3) {
    color: rgb(228, 60, 18);
}

