
body {
    background: #f6f6f6;
}
.info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 1200px;
    margin: 0 auto;
    border-radius: 30px;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.2);
	margin: 50px 0;
}
.info a {
    text-decoration: none;
    color: #fff;
    text-shadow: 2px 2px 10px black;
}
.hours {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 50px;
    border: 10px solid blueviolet;
    border-radius: 30px 0 0 30px;
}
.hours p {
    font-size: 40px;
}
.contacts {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 50px;
    background-color: blueviolet;
    border-radius: 0 30px 30px 0;
    font-size: 30px;
    color: #fff;
}
.social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.social img {
    width: 50px;
}
.map {
    width: 1200px;
    margin: 0 auto;
    border-radius: 30px;
    overflow: hidden;
    border: 10px solid blueviolet;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.2);
}
iframe {
    object-fit: cover;
    width: 100%;
    height: 800px;
}
.about {
    margin-top: 50px;
    padding: 20px;
    background: #fff;
    border-radius: 30px;
}
.about h2 {
    margin-bottom: 20px;
}
.about h3 {
    margin-bottom: 20px;
}
.about p {
    margin-bottom: 20px;
}
.about ul {
    padding-left: 50px;
    margin-bottom: 20px;
}

.gallery {
    margin-top: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
}
.gallery img {
    width: 100%;
    border-radius: 30px;
}
@media (max-width: 780px) {
    .info {
        display: block;
        width: auto;
        margin: 20px;
    }
    .hours {
    	border: 5px solid blueviolet;
    	border-radius: 30px 30px 0 0;
    }
    .contacts {
        border-radius: 0 0 30px 30px;
        font-size: 20px;
    }
    .hours p {
    	font-size: 30px;
	}
    .map {
        width: auto;
        height: 500px;
        margin: 20px;
        border: 5px solid blueviolet;
    }
    .gallery {
    	margin: 20px;
    	grid-gap: 10px;
	}
    .gallery img {
    	border-radius: 10px;
	}
	.about {
        width: auto;
        margin: 20px;
    }
    .about ul {
        padding-left: 30px;
    }
}