


/* varibles */

:root{
    --BorderRadius: 15px
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif
}


section {
    height: 100vh;
}

.PageOne {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.1)), url('../ImagesFiller/Contacts.jpg');
    background-color: #f1f1f1;
    background-size: 100%;
    margin-top: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 60vh;

    h1 {  display: flex;
        justify-content: center;
        color: rgb(255, 255, 255);
        font-size: 3vw;
        margin-bottom: 5px;}

    p {color: rgb(255, 255, 255);text-align: center;}
    
    input {
        margin-top: 10px;
        width: 300px;
        padding: 10px;
        border: 2px solid green;
        outline-color: green;
        border-radius: var(--BorderRadius);}
}


.PageOne textarea {
    display: block;
    width: 100%;
    height: 150px;
    margin: 5px auto;
    padding: 10px;
    border: 2px solid green;
    outline-color: green;
    resize: none;
    border-radius: var(--BorderRadius);
}

.PageOne button {
    border: 2px solid green;
    background-color: white;
    color: rgb(0, 0, 0);
    padding: 10px 20px;
    border-radius: var(--BorderRadius);
    cursor: pointer;
    display:block;
    margin: 5px auto;
    transition: transform 0.5s ease;
}

.PageOne button:hover{
    background-color: rgb(170, 170, 170);
    transform: scale(1.1);
}


@media(max-width:1024px){
    .PageOne {
        p{width: 70%;}
        h1{font-size: 4vw;}
    }
}

@media(max-width:600px){
    .PageOne input{
        display: flex;
        margin-top: 20px;
        margin-bottom: 20px;
    }
}

