* {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  box-sizing: border-box;
}
body {
  width: 100%;
  height: 100%;
  background-image: url(img/background.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}
nav {
  width: 100%;
  height: 10vh;
}
nav .nav-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.nav-container .logo {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.nav-container .logo img {
  width: 120px;
}
.nav-container .link a {
  color: #ffffff;
  text-decoration: none;
  margin: 0 20px;
  font-size: 1.2rem;
  transition: 0.2s linear;
}
.nav-container .link a:hover {
  color: #ff0000;
}
.nav-container .link i {
  color: #ffffff;
  font-size: 1.7rem;
  margin: 0 20px;
}
section {
  width: 100%;
  height: 90vh;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.main-container {
  width: 35%;
  color: #ffffff;
}
.main-container .heading {
  display: flex;
  align-items: top;
}
.image img {
  width: 600px;
  filter: drop-shadow(0 0 200px #ffffff);
}
.heading h1 {
  font-size: clamp(1rem, 1rem + 5vw, 7rem);
}
.heading span {
  margin-top: 10px;
  margin-left: 10px;
  font-size: clamp(1rem, 1rem + 5vw, 2rem);
}
.main-container .star {
  color: #ff0000;
  font-size: 1.3rem;
  margin: -5px 0 20px 0;
}
.main-container p {
  width: 90%;
  margin: 10px 0;
}
.main-container .sizes {
  width: 70%;
  height: 3vh;
  margin: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.main-container .sizes div {
  border: 3px solid #ff0000;
  border-radius: 15px;
  padding: 5px 15px;
  cursor: pointer;
  transition: 0.2s linear;
}
.main-container .sizes div:hover {
  background-color: #ff0000;
  border: 1px solid #ffffff;
}

.main-container button{
  width: 50%;
  height: 6vh;
  margin: 20px 0;
  font-size: 1.3rem;
  font-weight: 700;
  border-radius: 20px;
  border: 3px solid #ff0000;
  background-color: transparent;
  color: #ff0000;
  transition: 0.2s linear;
}
.main-container button:hover{
  background-color: #ff0000;
  color: #ffffff;
  box-shadow: 0 0 10px 1px #ff0000;
}
.main-container .shoes{
  width: 50%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-top: 20px;
}
.shoes .extra img{
  width: 100px;
  transform: rotate(30deg);
  filter: drop-shadow(2px 2px 10px #ffffff);
  transition: 0.2s linear;
}
.shoes .extra img:hover{
  scale: 1.2;
}