@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap");

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

body {
  background: rgb(36, 37, 37);
  font-family: "Open Sans", sans-serif;
  font-weight: lighter;
  font-size: 20px;
  line-height: 30px;
  color: rgb(223, 210, 179);
}

h1,
h2,
h3,
h4 {
  color: rgb(218, 116, 33);
  line-height: 50px;
  font-family: "Oswald", sans-serif;
  font-size: 45px;
  margin-bottom: 10px;
  position: relative;
  top: -20px;
  padding-left: 20px;
  text-decoration: underline;
}

thead {
  text-align: left;
}

a {
  color: rgb(223, 210, 179);
  text-decoration: none;
}

a:hover {
  color: rgb(255, 179, 0);
}

a:visited {
  color: rgb(220, 67, 67);
}

a:active {
  color: rgb(224, 134, 0);
}

img {
  padding-bottom: 20px;
  width: 100%;
  height: 70%;
  display: block;
  object-fit: cover;
  border-radius: 5px;
}

.card {
  background-color: rgba(218, 116, 33, 0.1);
  padding: 0px 20px 10px 20px;
  margin-top: 40px;
  margin-bottom: 30px;
  border-radius: 5px;
}

.info {
  width: 100%;
}

.info .card {
  margin-top: 0;
  margin-bottom: 0;
}

ol {
  padding-left: 30px;
  list-style: disc;
}

.container {
  max-width: 728px;
  margin: auto;
  margin-top: 50px;
}

thead th {
  font-size: 25px;
  font-family: "Oswald", sans-serif;
}

td:hover {
  transition: all 0.3s;
  background-color: rgba(236, 114, 14, 0.3);
}

table {
  border-collapse: collapse;
}

thead th {
  padding-bottom: 10px;
  border-bottom: 3px solid rgba(218, 116, 33, 0.9);
}

table td {
  padding: 3px;
}

table tr:nth-child(even) {
  background-color: rgba(236, 114, 14, 0.1);
}

.box {
  display: flex;
  gap: 30px;
}

.date {
  height: 30%;
  background-color: rgba(218, 116, 33, 0.1);
  padding: 0px 20px 0px 20px;
  font-family: "Oswald", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 55px;
  color: rgb(236, 114, 14);
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
}

@media (max-width: 650px) {
  .box {
    display: block;
    gap: 30px;
  }
  .date {
    margin-bottom: 30px;
    font-size: 30px;
  }
}

main {
  display: flex;
  flex-direction: column;
}

input {
  background-color: rgb(223, 210, 179);
  border: 0;
  border-radius: 5px;
  width: 100%;
  height: 20px;
}

form {
  text-align: left;
}

textarea {
  background-color: rgb(223, 210, 179);
  width: 100%;
  height: 200px;
  border-radius: 5px;
}

label {
  font-family: "Oswald", sans-serif;
  font-size: 30px;
  color: rgb(236, 114, 14);
  text-decoration: underline;
}

button {
  color: rgb(223, 210, 179);
  width: 150px;
  font-size: 20px;
  background-color: rgb(236, 114, 14);
  border: 0px;
  font-family: "Oswald", sans-serif;
  font-size: 30px;
}

button:hover {
  transition: all 0.3s;
  background-color: rgb(223, 210, 179);
  color: rgb(236, 114, 14);
}
