*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "poppins", sans-serif;
}

body{
    min-height: 100vh;
    background-color: #e6e6e6;
}


.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 100px;
    background-color: #262626;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.logo {
    font-size: 32px;
    color: white;
    text-decoration: none;
    font-weight: 700;
}

.navbar a {
    position: relative;
    font-size: 18px;
    color: white;
    font-weight: 500;
    text-decoration: none;
    margin-left: 40px;
}

.navbar a::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 0;
    height: 2px;
    background-color: white;
}   

.navbar a:hover::before {
    width: 100%;
}

.dropbtn {
    background-color: #b9b9b9;
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
  }
  
  .dropdown {
    position: relative;
    display: inline-block;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }
  
  .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }

  .dropdown-content a:hover {background-color: #ddd;}
  
  .dropdown:hover .dropdown-content {display: block;}
  
  .dropdown:hover .dropbtn {background-color: #464646;}

#wrapper{
    grid-template-columns: repeat(4,1fr);
    grid-template-rows: 66px repeat(2,500px);
    display: grid;
    gap: 10px;
    height: 100vh;
    width: 100vw;
    grid-template-areas:
    ". . . ."
    "item . text text"
    "item . . ."
    ". . . ."
    ;
}

#item1{
    grid-area: item;
}

#text1{
    grid-area: text;
    font-size: 30px;
}

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

picture{
    display: flex;
    justify-content: center;
}

@media only screen and (min-width: 600px) {

}

@media only screen and (min-width: 769px) {
    .dropdown{
        display: none;
    }
}