@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');
body{
    padding: 0%;
    margin: 0%;
    font-family: Roboto;
}
.narrow-container{
    width: 80%;
    height: 100%;
    margin-left: 10%;
    padding:20px;
}
.navigation-bar{
    display: flex;
    flex-direction: row;
    margin: 0px;
    height: 10vh;
    align-items: center;
}
.logo{
    flex: 1;
    padding:0%;
    margin: 0%;
}
.home-link{
    color: #7510f7;
    text-decoration: none;
    border: 3px solid #7510f7;
    padding: 10px;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 1.5rem;
    font-weight: 400;
    margin: 0%;
}

.navbar-links ul li{
    list-style-type: none;
    display: inline;
}
.navbar-links ul li a{
    color: #7510f7;
    text-decoration: none;
    padding: 15px;
    padding-left: 25px;
    padding-right: 25px;
    font-weight: 400;
    font-size: 1.75rem;
}
.image-holder{
    text-align: center;
}
img{
    width: 6rem;
    height: 6rem;
}
h1{
    text-align: center;
    font-size: 3rem;
    margin-top: 50px;
}
.form{
    display: flex;
    justify-content: center;
    flex-direction: row;
    width: 60%;
}
.form-group{
    padding: 20px;
    flex: 0.8;
}
label{
    font-size: 1.25rem;

}
input{
    width: 100%;
    height: 3rem;
    outline: none;
    border: 0.2px solid rgb(216, 216, 216);
}
.form-group-two{
    padding: 20px;
    flex: 0.8;
}
.form-two{
    display: flex;
    width: 60%;
    flex-direction: column;
}
.message{
    height: 10rem;
    flex: 1;
}
.form-container{
    display:flex;
    flex-direction: column;
    align-items: center;
}
button{
    background-color: white;
    border: 2px solid #7510f7;
    padding: 10px;
    font-size: 1.25rem;
    font-family: roboto;
    font-weight: 600;
    color: #7510f7;
}
button:hover{
    animation-name: color-change;
    animation-duration: 0.3s;
    background-color: #7510f7;
    color: white;
    cursor: pointer;
}
@keyframes color-change{
    0%{
        background-color: white;
        color: #7510f7;
    }
    100%{
        background-color: #7510f7;
        color: white;
    }
}
input:focus{
    border: 1px solid #7510f7;
}
@media (max-width:760px){
    body{
        padding: 0%;
        margin: 0%;
        font-family: Roboto;
    }
    .narrow-container{
        width: 90vw;
        height: 100%;
        margin-left: 0%;
    }
    .navigation-bar{
        display: flex;
        flex-direction: row;
        margin: 0px;
        height: 10vh;
        align-items: center;
    }
    .logo{
        flex: 1;
        padding:0%;
        margin: 0%;
    }
    .home-link{
        color: #7510f7;
        text-decoration: none;
        border: 3px solid #7510f7;
        padding: 10px;
        padding-left: 10px;
        padding-right: 10px;
        font-size: 1.25rem;
        font-weight: 400;
    }
    
    .navbar-links ul li{
        list-style-type: none;
        display: none;
    }
    .navbar-links ul li a{
        color: #7510f7;
        text-decoration: none;
        padding: 15px;
        padding-left: 25px;
        padding-right: 25px;
        font-weight: 400;
        font-size: 1.75rem;
    }
    .image-holder{
        text-align: center;
    }
    img{
        width: 6rem;
        height: 6rem;
    }
    h1{
        text-align: center;
        font-size: 2rem;
        margin-top: 50px;
    }
    .form{
        display: flex;
        justify-content: center;
        flex-direction: column;
        width: 100%;
    }
    .form-group{
        padding: 20px;
        flex: 0.8;
    }
    label{
        font-size: 1.25rem;
    
    }
    input{
        width: 100%;
        height: 3rem;
        outline: none;
        border: 0.2px solid rgb(216, 216, 216);
    }
    .form-group-two{
        padding: 20px;
        flex: 0.8;
    }
    .form-two{
        display: flex;
        width: 100%;
        flex-direction: column;
    }
    .message{
        height: 10rem;
        flex: 1;
    }
    .form-container{
        display:flex;
        flex-direction: column;
        align-items: center;
    }
    button{
        background-color: white;
        border: 2px solid #7510f7;
        padding: 10px;
        font-size: 1.25rem;
        font-family: roboto;
        font-weight: 600;
        color: #7510f7;
        border-radius: 20px;
        text-align: center;
        width:101% ;
    }
    button:hover{
        animation-name: color-change;
        animation-duration: 0.3s;
        background-color: #7510f7;
        color: white;
        cursor: pointer;
    }
    @keyframes color-change{
        0%{
            background-color: white;
            color: #7510f7;
        }
        100%{
            background-color: #7510f7;
            color: white;
        }
    }
    input:focus{
        border: 1px solid #7510f7;
    }
}
@media (max-width:1366px) and (min-width:760px){
    body{
        padding: 0%;
        margin: 0%;
        font-family: Roboto;
    }
    .narrow-container{
        width: 80%;
        height: 100%;
        margin-left: 10%;
    }
    .navigation-bar{
        display: flex;
        flex-direction: row;
        margin: 0px;
        height: 10vh;
        align-items: center;
    }
    .logo{
        flex: 1;
        padding:0%;
        margin: 0%;
    }
    .home-link{
        color: #7510f7;
        text-decoration: none;
        border: 3px solid #7510f7;
        padding: 10px;
        padding-left: 10px;
        padding-right: 10px;
        font-size: 1.25rem;
        font-weight: 600;
    }
    
    .navbar-links ul li{
        list-style-type: none;
        display: inline;
    }
    .navbar-links ul li a{
        color: #7510f7;
        text-decoration: none;
        padding: 15px;
        padding-left: 25px;
        padding-right: 25px;
        font-weight: 400;
        font-size: 1.75rem;
    }
    .image-holder{
        text-align: center;
    }
    img{
        width: 6rem;
        height: 6rem;
    }
    h1{
        text-align: center;
        font-size: 2rem;
        margin-top: 50px;
    }
    .form{
        display: flex;
        justify-content: center;
        flex-direction: row;
        width: 100%;
    }
    .form-group{
        padding: 20px;
        flex: 0.8;
    }
    label{
        font-size: 1.25rem;
    
    }
    input{
        width: 100%;
        height: 3rem;
        outline: none;
        border: 0.2px solid rgb(216, 216, 216);
    }
    .form-group-two{
        padding: 20px;
        flex: 0.8;
    }
    .form-two{
        display: flex;
        width: 100%;
        flex-direction: column;
    }
    .message{
        height: 10rem;
        flex: 1;
    }
    .form-container{
        display:flex;
        flex-direction: column;
        align-items: center;
    }
    button{
        background-color: white;
        border: 2px solid #7510f7;
        padding: 10px;
        font-size: 1.25rem;
        font-family: roboto;
        font-weight: 600;
        color: #7510f7;
        border-radius: 10px;
        text-align: center;
    }
    button:hover{
        animation-name: color-change;
        animation-duration: 0.3s;
        background-color: #7510f7;
        color: white;
        cursor: pointer;
    }
    @keyframes color-change{
        0%{
            background-color: white;
            color: #7510f7;
        }
        100%{
            background-color: #7510f7;
            color: white;
        }
    }
    input:focus{
        border: 1px solid #7510f7;
    }
}
