
.map-container {
    display: flex;
    flex-direction: row;
    margin-top: 50px;
}
iframe {
    width: 100%;
    height: 450px;
    border: 0;
}
.address-container {
    width: 40%;
    padding: 20px;
}
.address {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
}
#navigate-button {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    color: #fff;
}
.icon {
    margin-right: 10px;
    font-size: 24px;
}
h1 {
    text-align: center;
    margin-top: 20px;
}
@media (max-width: 768px) {
    .map-container {
        flex-direction: column;
    }
    .address-container {
        width: 100%;
    }
}
#homeLink {
    position: absolute;
    top: 20px;
    left: 20px;
    
}
#bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}
.logo{
    padding: 15px;
    text-decoration-line: none;
    transition: transform .2s;
    color: white;
    padding-left: 20px;
};
.logo:hover{
transform: scale(1.2);
}
span{
    font-size:large;
  }
.back{
    width: 100px;
    height: 45px;
    cursor: pointer;
    color: #fff;
    font-size: 17px;
    border-radius: 1rem;
    border: none;
    position: relative;
    background: #200d07;
    transition: 0.1s;
    margin: 10px 0  0 10px;
    border: 2px solid white;
  }
  
.back::after {
    content: '';
    width: 100%;
    height: 100%;
    background-image: radial-gradient( circle farthest-corner at 10% 20%,  rgb(230, 21, 52) 17.8%, rgb(246, 60, 60) 100.2% );
    filter: blur(15px);
    z-index: -1;
    position: absolute;
    left: 0;
    top: 0;
  }
  
.back:active {
    transform: scale(0.9) rotate(3deg);
    background: radial-gradient( circle farthest-corner at 10% 20%,  rgb(255, 94, 105) 17.8%, rgb(88, 5, 8) 100.2% );
    transition: 0.5s;
  }