* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 170%;
    }

hr {
  border: none;
  border-top: 2px solid #888;
  margin: 20px 0;
}

html, body {
    height: 100%;
    width: 100%;
}

img {
  pointer-events: none;
}

body {
    background: #000000 url("images/background.jpg") no-repeat left top;
    background-size: cover;
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 25px;
    padding-left: 25px;
    overflow: hidden;
}

body.no-background {
    background: none !important;
    background-color: #aaa9a9 !important;
    display: block !important;
    padding-left: 50px !important;
    height: auto !important;
    overflow: visible !important;
}

.page {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: flex-start;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.content img {
    height: auto;
    display: block;
}

.name-image {
    width: 190px;
    margin-left: 2px;
}

.address-image {
    width: 292px;
    margin-left: 4px;
}

.subtitle-image {
    width: 180px;
    margin-bottom: 20px;
    margin-left: 2px;
}

.email-image {
   width: 346px;
    transition: opacity 0.3s ease;
    margin-left: 4px;
}

.phone-image {
    width: 229px;
    transition: opacity 0.3s ease;
       margin-bottom: -4px;
}

a {
    text-decoration: none;
}

a:hover img {
    opacity: 0.5;

}

@media (max-width: 768px) {
    .content {
        align-items: flex-start;
    }
    
    .name-image {
        width: 40vw;
        max-width: 190px;
    }
    
    .address-image {
        width: 60vw;
        max-width: 292px;
    }
    
    .subtitle-image {
        width: 38vw;
        max-width: 180px;
    }
    
    .email-image {
        width: 72vw;
        max-width: 346px;
    }
    
    .phone-image {
        width: 48vw;
        max-width: 229px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 15px;
    }
}
