* {
    margin: 0;
    padding: 0;
}

body {
    width: 100vw;
    max-width: 100%;
    min-height: 100vh;
    background-color: rgb(26, 24, 24);
}

.main {
    width: 100vw;
    max-width: 100%;
    height: calc(clamp(100vh, 100vh, 100vh) + 2px);
    background-image: url('images/1.jpg');
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    flex-direction: column;
}

header {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.76);
    flex-wrap: wrap;
}

.logo img {
    aspect-ratio: 1280/1024;
    height: 150px;
}

header, nav {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
}

nav {
    padding-bottom: 15px;
    padding-top: 15px;
}

nav {
    gap: 65px;
}

nav a {
    color: #ffffff;
    cursor: pointer;
    font-size: xx-large;
    transition: .5s;
    text-decoration: none; 
}

nav h1:hover {
    color: gold;
}

main {
    width: 100%;
    height: auto;
    flex-grow: 1;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    display: flex;
    flex-direction: column;
}

.border-b {
    border-bottom: 2px solid white;
}

main img {
    width: 400px;
    background-color: rgba(0, 0, 0, 0.253);
    border-radius: 15px;
}

main .info {
    width: calc(100% - 40px);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    gap: 25px;
}

main .info h2 {
    color: white;
    font-size: xx-large;
    font-family: Calibri;
    text-shadow: rgb(0, 0, 0) 3px 0px 0px, rgb(0, 0, 0) 2.83487px 0.981584px 0px, rgb(0, 0, 0) 2.35766px 1.85511px 0px, rgb(0, 0, 0) 1.62091px 2.52441px 0px, rgb(0, 0, 0) 0.705713px 2.91581px 0px, rgb(0, 0, 0) -0.287171px 2.98622px 0px, rgb(0, 0, 0) -1.24844px 2.72789px 0px, rgb(0, 0, 0) -2.07227px 2.16926px 0px, rgb(0, 0, 0) -2.66798px 1.37182px 0px, rgb(0, 0, 0) -2.96998px 0.42336px 0px, rgb(0, 0, 0) -2.94502px -0.571704px 0px, rgb(0, 0, 0) -2.59586px -1.50383px 0px, rgb(0, 0, 0) -1.96093px -2.27041px 0px, rgb(0, 0, 0) -1.11013px -2.78704px 0px, rgb(0, 0, 0) -0.137119px -2.99686px 0px, rgb(0, 0, 0) 0.850987px -2.87677px 0px, rgb(0, 0, 0) 1.74541px -2.43999px 0px, rgb(0, 0, 0) 2.44769px -1.73459px 0px, rgb(0, 0, 0) 2.88051px -0.838247px 0px;
}

.info p {
    font-size: 18px;
}

.address-header {
    color: white;
    text-align: center;
    font-size: 48px;
    padding: 15px;
}


.address, .images {
    width: 100vw;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.address div {
    min-width: calc(50% - 30px);
    width: auto;
    padding: 15px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
}

.images div {
    min-width: calc(33.33% - 30px);
    max-width: 450px;
    width: auto;
    padding: 15px;
    display: block;
    position: relative;
}

.images div img {
    width: 100%;
    height: 100%;
}

.images div::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(26, 24, 24, 0) 0%, rgba(26, 24, 24, 0) 48%, rgba(26, 24, 24, 1) 100%); 
}

.address h1 {
    font-size: 42px;
}

.address h2 {
    font-size: 36px;
}

@media only screen and (max-width: 1259px) {
    .address-2 {
        flex-wrap: nowrap;
        flex-direction: column-reverse;
    }
}

@media only screen and (max-width: 750px) {
    nav h1 {
        font-size: x-large;
    }

    nav {
        gap: 35px;
    }
}

@media only screen and (max-width: 630px) {
    .address iframe {
        max-width: calc(100% - 30px);
    }
}

.contact {
    padding: 25px 0px;
}

@media only screen and (max-width: 550px) {
    nav h1 {
        font-size:larger;
    }

    nav {
        gap: 15px;
    }

    .logo img {
        height: 100px;
    }

    main img {
        width: 350px;
    }

    .address h1 {
        font-size: 32px;
    }
    
    .address h2 {
        font-size: 24px;
    }
}

@media only screen and (max-width: 400px) {
    main img {
        width: 300px;
    }
}