main {
    min-height: 75vh;
}

.info {
    display: flex;
    gap: 16px;
}

.info > .address {
    width: 35vw;
    background-color: #e8f5e9;
    border: 2px solid #2e7d32;
    padding: 12px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.address > .send-sms {
    display: grid;
    margin-top: 16px;
}

.info i {
    color: #2e7d32;
}

.info iframe {
    border-radius: 8px;
}

.info b {
    font-family: Lora, serif;
}

.info a {
    margin-top: 12px;
    margin-bottom: 12px;
    display: flex;
    gap: 8px;
    align-items: center;
}

.send-sms a {
    background-color: #2e7d32;
    color: white;
    border-radius: 8px;
    padding: 12px;
}

.send-sms a i {
    color: white;
}

.send-sms a:hover {
    background-color: #388e3c;
}

/* 768px and less */
@media only screen and (max-width: 768px) {
    .info {
        flex-direction: column;
    }
    .info > .address {
        width: auto;
    }
}
