@media only screen and (min-width: 1000px) {
    .p-section1 {
        width: 100%;
        height: 750px;
        background-image: url("/static/images/euan-1.JPG");
        background-size: cover;
        position: relative;
        background-position-y: 40%;
    }
    
    .p-section1:before {
        content: "";
        position: absolute;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100%;
        background-color: black;
        opacity: 40%;
    }
    
    .p-section1-buttons {
        position: absolute;
        bottom: 100px;
        left: 100px;
        right: 100px;
        text-align: center;
    }
    
    .p-section1-buttons-toprow {
        font-size: 60px;
        line-height: 60px;
        height: 60px;
    }
    
    .p-section1-buttons-bottomrow {
        font-size: 50px;
        line-height: 50px;
        height: 50px;
        margin-top: 25px;
    }
    
    .p-section1-buttons-toprow > a,.p-section1-buttons-bottomrow > a {
        text-decoration: none;
        cursor: pointer;
        color: white;
        margin: 0px 12.5px;
        transition: 0.3s ease;
    }
    
    .p-section1-buttons-toprow > a:hover,.p-section1-buttons-bottomrow > a:hover {
        transform: scale(110%);
    }
}

@media only screen and (max-width: 1000px) {
    .p-section1 {
        width: 100%;
        height: 100vh;
        background-image: url("/static/images/euan-1.JPG");
        background-size: cover;
        background-position: center;
        position: relative;
        background-position-y: 40%;
        transition: 0.5s ease;
    }
    
    .p-section1:before {
        content: "";
        position: absolute;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100%;
        background-color: black;
        opacity: 40%;
    }
    
    .p-section1-buttons {
        position: absolute;
        bottom: 25px;
        left: 25px;
        right: 25px;
        text-align: center;
    }
    
    .p-section1-buttons-toprow {
        font-size: 50px;
        line-height: 50px;
        height: 50px;
    }
    
    .p-section1-buttons-bottomrow {
        font-size: 40px;
        line-height: 40px;
        height: 40px;
        margin-top: 20px;
    }
    
    .p-section1-buttons-toprow > a,.p-section1-buttons-bottomrow > a {
        text-decoration: none;
        cursor: pointer;
        color: white;
        margin: 0px 10px;
        transition: 0.3s ease;
    }
}