body {
    background-color: #0C0E4A;
    color: white;
    font-family: "Quicksand", sans-serif;
}

h1 {
    font-weight: 700;
}

h2 {
    font-weight: 600;
}


h3 {
    font-weight: 500;
}

p{
    font-size: 1rem;
}

header {
    padding-top: 2%;
}

.logo {

    width: 15rem;
}

.logo img {

    object-fit: contain;
}


nav ul {

    text-align: right;
    list-style: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    display: inline-block;
    padding-left: 1rem;
    padding-right: 1rem;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 1rem;
    font-weight: 700;
}

.maintext {

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.maintext h1 {
    font-size: 4rem;
    padding-bottom: 2rem;
    display: block;
}

.maintext h2 {
    font-size: 2rem;
    display: block;
    color: #3CC2D1;
}

.maintext ul {
    padding-left: 0px;
    margin-bottom: 0px;
}

.maintext ul li {
    list-style: none;
    display: inline-block;
}

.maintext ul li a {}

.maintext ul li a img {
    object-fit: contain;
    width: 15rem;
    height: 10rem;
    padding: 0.5rem;
}


.mainphoneimage {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;


}

.mainphoneimage img {
    object-fit: contain;

}

.homepage {
    height: 100vh;
}

.about {
    height: 100vh;
    background-color: #141A55;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about h1 {
    font-size: 3rem;
}

.contact {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: #1B2178;
}

.contact h1{
    font-size: 3rem;
}

.contact input{
    width: 100%;
    height: 4rem;
    border-radius: 15px;
    padding-left: 1rem;
}

.contact textarea {
    width: 100%;
    height: 19rem;
    border-radius: 15px;
    resize: none;
    padding-top: 1rem;
    padding-left: 1rem;
}

.contact p{
	padding-top: 15px;
}

.submit{
    font-size: 1rem;
    border: 1px solid white;
    margin-top: 1rem;
    width: 10rem;
    overflow: hidden;
    border-radius: 10px;
    float: right;
    transition: 1s;
}

.submit:hover{
    background: #3CC2D1;
    transition: 1s;
}


.submit:hover a{
    font-weight: bold;
}


.submit a{
    text-decoration: none;
    color: #fff;
    text-align: center;
    display: block;
    padding: 1rem;
}




