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

@font-face {
    font-family: "myFont";
    src: url(./fonts/Valty\ DEMO.otf);
}

.main {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: black;
    color: rgb(160, 136, 0);
}

.parent {
    width: 50vw;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;

}

.images {
    border-top-right-radius: 50px;
    border-bottom-left-radius: 50px;
    transition: 1.5s ease;
    cursor: pointer;
    box-shadow: 0px 0px 10px gold;
    margin: 0%;
}

h1 {
    margin-top: 20px;
    text-align: center;
    font-family: "myFont";
    font-size: 70px;
}


@media (max-width: 768px) {
    .parent {
        flex-wrap: wrap;
    }

    .main {
        height: 100%;
    }
}

@media (max-width: 480px) {
    .parent {
        flex-wrap: wrap;
    }
}

@media (min-width: 768px) {
    .main {
        height: 100vh;
    }

}