@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
* {
    font-family: "Roboto", sans-serif;
    padding: 0;
    margin: 0;
}
main {
    height: 70dvh;
}

#video-container {
    text-align: center;
    width: 100%;
    height: 80%;
}

#video-container video {
    width: 50%;
    height: auto;
    object-fit: contain;
}

#image-container {
    display: none;
    width: 100%;
    height: 80%;
}

#image-container img {
    width: 100%;
    object-fit: contain;
    cursor: pointer;
}

#work-container {
    display: none;
    grid-template-rows: repeat(2, 1fr);
    gap: 1rem;
    justify-items: center;
    justify-content: center;
    align-content: space-evenly;
}

#work-video {
    margin-right: 2rem;
    width: 50%;
}

footer {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: right;
    margin-right: 5rem;
}

footer .horizontal-buttons {
    display: flex;
    justify-content: right;
}

footer #email {
    display: flex;
    flex-direction: column;
    justify-content: right;
}

footer #email a {
    color: black;
    text-decoration-line: none;
    text-align: right;
}

.horizontal-buttons a {
    background: none;
    border: none;
    cursor: pointer;
    margin-left: 1.7rem;
}

#contact-container {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: right;
    margin-left: 20%;
    column-gap: 4rem;
    margin-bottom: 4rem;
    height: 70%;
}

.employer {
    display: flex;
    flex-direction: column;
}

.employer a {
    text-decoration: none;
    color: black;
}

#logo-container {
    display: flex;
    justify-content: right;
    margin-right: 5rem;
}

#logo-container img {
    cursor: pointer;
    width: 10%;
    object-fit: contain;
}

#ilona {
    margin-bottom: 2rem;
}

@media (max-width: 1000px) {
    #logo-container img {
        width: 20%;
    }
}
