main{
    display: grid;
    position: absolute;
    width: auto;    height: 88.5vh;
    left: 0;
    right: 0;
    margin-inline: auto;
    grid-template-columns: 55% 30%;
    grid-template-rows: 33.75% 63.75%;
    top: 7vh;
    column-gap: 15%;
    row-gap: 2.5%;
    padding: 1.5vw 1.5vh;
}
article{
    grid-row: 1;
    grid-column: 1;
}
h1{
    font-family: "Sprat";
    font-size: 4.4vh;
    text-transform: uppercase;
}
p{
    font-family: "Lucette";
    font-size: 1.9vh;    line-height: 123%;
    margin-top: 1.5vh;  align-self: end;
}
button{
    padding: 0.5vh 1.5vh 20vh 1.5vh;
  font-family: "Sprat";
  font-size: 3.6vh;
  border: 1px solid #000;
  grid-row: 1;
  grid-column: 2;
  background-color: var(--background);
  height: 50%;
  align-self: end;
}
object{
    grid-row: 2;
    grid-column: 1/3;
    width: 100%;
    height: 100%;
}
@media screen and (min-width:1440px) {
    p {
        font-size: 2.4vh;
    }
}
@media screen and (max-device-width:1439px), (max-width:1439px){
    h1{
        font-size: 3.7vh;
    }
    p {
        font-size: 1.8vh;
    }
    main{
        grid-template-columns: 57% 35%;
        column-gap: 8%;

    }
    button{
        font-size: 2.6vh;    }

}

@media screen and (max-height:900px) and (orientation: landscape) and (hover: none)  {
    h1{
        font-size: 3.7vh;
    }
    p{
        font-size: 2.15vh;
    }
    main{
        grid-template-columns: 57% 35%;
        column-gap: 8%;

    }
}

@media screen and (max-device-width:900px), (max-width:900px){
    main{
        grid-template-columns: 55% 40.5%;
        grid-template-rows: 33.75% 63.75%;
        column-gap: 2.5%;
    }
    h1{
        font-size: 2.6vh;
    }
    p{
        font-size: 1.4vh;
        line-height: 120%;
    }
    object{
        width: 100%;
        height: 100%;
    }
    button{
        font-size: 1.8vh;
        padding: 0.5vh 0.75vh 20vh 0.75vh;

    }
}
@media screen and (max-device-width:570px), (max-width:570px)  {
    main{
        display: block;
        position: relative;
        width: auto;
        height: auto;
        left: 0;
        right: 0;
        margin-inline: auto;
        padding: 1.5vw 0.5vh;
    }
    h1 {
        font-size: 2.9vh;
        text-align: center;
    }
    p {
        font-size: 1.5vh;
        line-height: 125%;
        margin: 1.5vh 0% 2vh 0%;
    }
    object{
        height: 40vh;
        z-index: 2;
        display: block;

    }
    button {
        padding: 16% 2.5% 2.5% 2.5%;
        margin: -4vh 17vw;
        z-index: -1;
        display: block;
    }
}