html, body {
    width: 100%;
    height: 100svh;
    padding: 0;
    margin: 0;
    font-family: "Poppins", sans-serif;
    box-sizing: border-box;
}

.main {
    width: 100%;
    height: 100svh;
    background-image: url(../assets/bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 5%;
    box-sizing: border-box;
}

.main > div {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.main > div > h2 {
    font-size: 42px;
    font-weight: 600;
    color: #000000;
}

.main > div > figure {
    width: 20%;
    height: auto;
}

.main > div > address {
    font-size: 18px;
    color: #000000;
    font-weight: 300;
    font-style: normal;
}

.main > div > a {
    font-size: 18px;
    color: #000000;
    font-weight: 300;
    font-style: normal;
    text-decoration: none;
}

.main > div > a > strong {
    font-weight: 500;
}
@media only screen and (min-width: 340px) and (max-width: 640px) {
    .main > div:last-child {
        margin-bottom: 15%;
    }
    .main > div > h2 {
        font-size: 26px;
        font-weight: 600;
        color: #000000;
    }
    .main > div > figure {
        width: 40%;
        height: auto;
    }
    .main > div > address {
        font-size: 14px;
        color: #000000;
        font-weight: 300;
        font-style: normal;
    }
    .main > div > a {
        font-size: 14px;
        color: #000000;
        font-weight: 300;
        font-style: normal;
        text-decoration: none;
    }
}