* {
    padding: 0;
    margin: 0;
    font-family: "sans-serif", Arial;
    box-sizing: border-box;
}

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

body {
    min-height: 100vh;
    margin: 0;
    background: linear-gradient(to bottom right, grey, black) center / cover no-repeat;
    background-attachment: fixed;
}

.main .contact {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    flex-direction: column;
    padding: 20px;
}

.main .contact h1 {
    margin: 40px 0;
    text-align: center;
}

.main .contact img {
    width: min(700px, 90vw);
    height: auto;
    transform: rotate(270deg);
}

@media (max-width: 600px) {
    .main .contact {
        padding: 15px;
    }

    .main .contact h1 {
        margin: 20px 0;
        font-size: 28px;
    }

    .main .contact img {
        width: 85vw;
    }
}