@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap");

* {
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  background-color: white;
  margin: 0;
  color: white;
}

.container {
  margin: 0 auto;
  width: 1000px;
  max-width: 100%;
}

header {
  background-image: url(/img/banner.jpg);
  background-size: cover;
  background-position: center center;
  max-width: 100%;
  height: 300px;
  margin-bottom: 2rem;
}


nav {
  display: flex;
  align-items: center;
  margin: 3rem 0 1rem;
  font-weight: bold;
}

.logo {
  font-size: 3rem;
  margin-right: 1rem; 
  color: black;
}

.it, .logo {
 color: #575555;
}

.inner-nav {
  flex: 1;
}

.row {
  display: flex;
  justify-content: space-between;
  object-fit: cover;
  gap: 2rem;
}

img {
  border-radius: 20px;
}

.big {
  font-size: 2.5rem;
  margin: 0;
}

.blue {
  color: #007ffa;
  margin: 0;
}

nav ul {
  display: flex;
  padding: 0;
  list-style-type: none;
  margin: 0;
}

nav a {
  color: black;
  text-decoration: none;
  margin-left: 3rem;
}

nav a.active {
  color: #007ff4;
}

.col {
  padding: 1rem;
  flex: 1;
}

.col img {
  width: 100%;
}

h2 {
  font-size: 2rem;
  text-align: center;
  color: black;
}

p {
  color: black;
  text-align: center;
}


.text-center {
  text-align: center;
}

button {
  background-color: #007ff4;
  border: none;
  color: white;
  font-size: 1.5rem;
  padding: 1rem 2rem;
  margin-bottom: 40px;
  border-radius: 30px;
}

button:hover {
  color: rgb(184, 233, 255);
}

a:hover {
  color: #007ff4;
}

.footer{
  width: 100%;
  text-align: center;
  padding-bottom: 15px;
}
.footer h4{
  margin-bottom: 5px;
  margin-top: 20px;
  font-weight: 600;
  color: rgb(68, 68, 68);
}

#ig {
  color: rgb(241, 26, 231);
} 

.socials {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 1rem;
}

#dc {
  color: #5865F2;
}

@media screen and (max-width: 768px) {
  .hidden-mobile {
    display: none;
  }

  .row {
    flex-direction: column;
    align-items: center;
    justify-content: center ;
  }

  nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
  }

  nav li a {
    display: block;
  }
 
  .big {
    font-size: 2rem;
  }
}

@media screen and (max-width: 1000px) {
  .logo {
    margin-left: 20px;
  }
}

  @media screen and (max-width: 330px) {
    .logo {
      padding-bottom: 60px;
    }
    } 
