h1 {
    color: blue;
    font-size: 24px;
}

h2 {
    font-size: 20px;
}

p {
    color: red;
}


.photo {
    width:1000px;
    margin-bottom: 20px;
    margin-top: 20px;
    margin-left: 20px;
    align: center;
    border: 2px solid #dddddd;
    border-collapse: collapse; 
}

.warning {
  border: 10px ridge #f00;
  background-color: #ff0;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
}

.warning h1 {
  color: #f00;
}

.warning p {
  font: small-caps bold 1.2rem sans-serif;
  text-align: center;
}

table {
    width:1000px;
    margin-bottom: 20px;
    border: 2px solid #dddddd;
    border-collapse: collapse; 
}
table th {
    font-weight: bold;
    padding: 5px;
    background: #efefef;
    border: 1px solid #dddddd;
}

table td {
    border: 1px solid #dddddd;
    padding: 5px;
}

table tbody tr:nth-child(even){
    background: #bde0ff;
}

table tbody tr:nth-child(odd){
    background: #ffffff;
}

photo tbody tr:nth-child(odd){
    background: #ffffff;
}

img {
   width: 300px;
}
/* Сброс стилей списка */
nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
 
/* Стилизация элементов списка */
nav li {
  display: inline-block;
  margin-right: 20px;
}
 
/* Стилизация ссылок */
nav a {
  text-decoration: none;
  color: #333;
}
 
/* Стилизация ссылок при наведении */
nav a:hover {
  color: #007bff;
}

.floating-button {
  text-decoration: none;
  display: inline-block;
  width: 220px;
  height: 45px;
  line-height: 45px;
  border-radius: 45px;
  margin: 10px 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 3px;
  font-weight: 600;
  color: #524f4e;
  background: white;
  box-shadow: 0 8px 15px rgba(0, 0, 0, .1);
  transition: .3s;
}
.floating-button:hover {
  background: #2EE59D;
  box-shadow: 0 15px 20px rgba(46, 229, 157, .4);
  color: white;
  transform: translateY(-7px);
}

.clock {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    color: #ffffff;
    font-size: 160px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    letter-spacing: 7px;
}
