@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

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

body {
    background-color: #c9e433;
}

.name {
    display: flex;
    justify-content: center;
}

.yt-video {
    display: flex;
    justify-self: center;
    margin-top: 40px;
}

.yt-video iframe {
    border-radius: 20px;
    width: 650px;
    margin-bottom: 50px;
}

.blocks {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
    align-items: stretch;
    gap: 35px;
    padding: 0px 100px;
}

.block {
    background-color: #414141;
    color: #fff;
    padding: 15px 20px;
    border-radius: 10px;
}

.social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.social img {
    width: 55px;
    height: 55px;
    margin-top: 70px;
}

.social img:hover {
    opacity: 0.8;
}

.map iframe {
    width: 100%;
}


@media (max-width: 800px) {
    .yt-video iframe {
        width: 90vw;
    }

    .blocks {
        grid-template-columns: 1fr;
        padding: 0;
    }
}