@font-face {
    font-family: hoefler;
    src: url(hoefler-text-regular.ttf);
}

html, body {
    margin: 0;
    padding: 0;
}

body {
    background-color: black;
    color: white;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100dvh;
    width: 100vw;
    font-family: hoefler;
}

.diagonal-banner {
    position: absolute;
    top: 0px;
    right: 0;
    width: 30%; /* Adjust based on your image size */
    max-width: 600px;
    /* min-width: 300px; */
    transform: rotate(0deg); /* Adjust angle if needed */
    transform-origin: top right;
}

.diagonal-banner img {
    width: 100%;
}

.container {
    display: flex;
    align-items: center;
    gap: 80px;
    width:  60%;
    max-width: 1000px;
}

.logo {
    width: 40%;
}

.logo img {
    width: 100%;
    transition: all .4s ease-in-out;
}

.logo img:hover{
    transform: rotate(360deg);
}

.images {
    width: 60%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.images img {
    width: 100%;
}

.social-media {
    position: absolute;
    bottom: 20px;
    left: 20px;
}

.social-media a {
    display: flex;
    align-items: center;
    color: white;
    text-decoration: none;
    margin: 10px 0;
    font-size: 1.2em;
    transition: all .2s ease-in-out;
}

.social-media i {
    margin-right: 10px;
    font-size: 1.5em;
}

.social-media a:hover {
    color: grey;
}


@media (max-width: 768px) {  /* Adjust for your breakpoint */
    .diagonal-banner {
        width: 70%;
    }

    .container {
        flex-direction: column;
        gap: 20px;
        width: 70%;
        max-width: 300px;
    }

    .logo {
        width: 70%;
    }

    .images {
        width: 100%;
    }


    .social-media a {
        font-size: 0.7em;
    }
  }