* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

img {
  pointer-events: none;
}

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

.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.25;

}

@media (max-width: 768px) {
    .content {
        align-items: flex-start;
    }
}

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

@media (max-width: 400px) {
    .content {
        transform: scale(0.8);
        transform-origin: top left;
    }
}

@media (max-width: 320px) {
    .content {
        transform: scale(0.7);
        transform-origin: top left;
    }
}
