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

body {
  background-color: rgb(255, 255, 255);
  background: radial-gradient(circle, #ffffff, #9fc4fc);
}

.container {
  display: flex;
  justify-content: center;
  max-width: 1000px;
  padding: 0 30px;
  margin: 0 auto;
  font-weight: bold;
}

.container2 {
  padding-top: 100px;
  margin-bottom: 100px;
  font-weight: bold;
  text-align: center;
}

.box {
  border: 2px solid #ddd;
  border-radius: 20px;
  padding: 30px;
  margin: 30px auto;
  width: 950px;
  display: flex;
  justify-content: space-between;
  background-color: #fcfcfc;
  box-shadow: 2px 5px 15px rgba(0, 0, 0, 0.1);
}

.box2 {
  background-color: #ffffff;
  border: 1px solid #061327;
  border-radius: 8px;
  padding: 15px;
  width: 420px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.container-box {
  display: flex;
  justify-content: center;
  max-width: 1000px;
  padding: 0 30px;
  margin: 0 auto;
  font-weight: bold;
  flex-wrap: wrap;
  gap: 20px;
}

.background {
  background-image: url('landscape.jpg');
  background-size: cover;
  position: relative;
}

.navbar {
  background-color: rgb(0, 9, 88);
  color: white;
  height: 60px;
}

.navbar .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.navbar ul {
  display: flex;
  flex-direction: row;
  list-style-type: none;
}

.navbar ul li {
  margin-left: 20px;
}

.navbar .logo {
  font-size: x-large;
  font-weight: bold;
}

.navbar a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
}

.navbar a:hover {
  border-bottom: 2px #97bffc solid;
  color: #97bffc;
}

.big {
  font-size: 50px;
}

.big-s {
  font-size: 30px;
}

h1 {
  padding-top: 20px;
  padding-bottom: 30px;
}

.Hahmlet {
  font-family: 'Hahmlet', serif;
  font-weight: 400;
  font-style: normal;
}

p {
  font-size: 20px;
}

h2 {
  padding-top: 30px;
}

.github-img {
  padding-top: 40px;
}

.github-png {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.small {
  font-size: 15px;
}

.left,
.right {
  padding: 30px;
}

.right {
  padding-top: 80px;
}

.kkaturi-png {
  padding-top: 20px;
}

img.full-width {
  display: block;
  margin: auto;
  width: 100%;
  max-width: none;
  height: auto;
}

.white-box {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 20px;
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  transition: transform 0.5s ease;
  font-size: 25px;
  text-align: center;
}

.white-box:hover {
  transform: translate(-50%, -50%) translateY(-10px);
}

table {
  border-collapse: collapse;
  width: 300px;
}

th,
td {
  border: 1px solid #ccc;
  padding: 10px;
  text-align: left;
}

th {
  background-color: #f2f2f2;
}

@media screen and (min-width: 600px) and (max-width: 1000px) {
  .container {
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
    text-align: center;
  }

  .navbar .container {
    width: 100%;
    max-width: none;
    padding: 0 15px;
  }

  .box {
    flex-direction: column;
    width: auto;
    padding: 20px;
    margin: 20px auto;
  }

  .box2 {
    width: 100%;
    margin-bottom: 20px;
  }

  .white-box {
    top: 40%;
    font-size: 22px;
    padding: 18px;
    width: 90%;
    max-width: 500px;
  }

  .big {
    font-size: 40px;
  }

  .big-s {
    font-size: 25px;
  }

  table,
  th,
  td {
    padding: 6px;
    font-size: 16px;
  }

  img {
    width: 100%;
    height: auto;
  }
}

@media screen and (min-width: 0px) and (max-width: 600px) {
  .container {
    flex-direction: column;
    align-items: center;
    padding: 0 10px;
    text-align: center;
  }

  .navbar .container {
    width: 100%;
    max-width: none;
    padding: 0 15px;
  }

  .box {
    flex-direction: column;
    width: 100%;
    padding: 15px;
    margin: 15px auto;
  }

  .box2 {
    width: 100%;
    margin-bottom: 20px;
  }

  .white-box {
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 15px;
    font-size: 15px;
    width: 90%;
    max-width: none;
    text-align: center;
  }

  .white-box p {
    font-size: 13px;
  }

  .big {
    font-size: 30px;
  }

  .big-s {
    font-size: 20px;
  }

  table,
  th,
  td {
    padding: 4px;
    font-size: 14px;
  }

  .navbar .logo {
    font-size: 20px;
  }

  img {
    max-width: 100%;
    height: auto;
  }
}
