* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-family: Helvetica, sans-serif;
}


.navbar{
  position: fixed;
  top: 0;
  width: 100%;
  height: auto;
  background: #cccccc;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5vh;
  z-index: 1000;
}

.logo{
 display: flex;
 align-items: center;
 font-weight: bold;
 font-size: 3vh;
}

.logo img{
    height: 5vh;
    margin-right: 1vh;
}

.social-media {
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-media a {
    text-decoration: none; 
    color: black;
    font-size: 3vh;
    margin-right: 1vh;
    transition: transform 0.3s;
}

.social-media a:last-child{
    margin-right: 0;
    font-size: 3.5vh;
}

.social-media a:hover {
    transform: scale(1.1); 
}

.main {
    display: flex;
    flex-direction: column; 
    position: relative;
    margin-top: 16px;
}

.main-desktop {
    background-color: #f0f0f0;
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url('img/image1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    transition: background-image 1s ease, opacity 1s ease;
}

.main-mobile {
    background-color: #e0e0e0;
    display: flex;
    flex-direction: column;
    background-size: contain;
    display: none;
}

.main-mobile img {
    width: 100%; 
    height: auto; 
    border-radius: 5px;
    margin-top: 1em;
}

.main-mobile img:first-child{
    margin-top: 0;
}

.whatsapp-icon {
    position: fixed; 
    bottom: 40px; 
    right: 20px; 
    background-color: #25D366; 
    color: white; 
    padding: 10px;
    border-radius: 50%;
    font-size: 24px;
    text-decoration: none;
    z-index: 1;
}

.whatsapp-icon:hover {
    transform: scale(1.1);
}

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    padding: 6px;
    width: 100%;
    height: auto;
    background-color: #ccc; 
    color: black;
    display: flex;
    align-items: center;
    justify-content: center; 
    z-index: 1;
}

@media (max-width: 600px) {

    .main-desktop{
        display: none;
    }

    body{
        overflow: auto;
    }
    .main-mobile{
        display: flex;
    }
}