@import "reset.css";


body{
    background-image: url("images/wallpaper.jpg");
}

main{
    display:grid;
    grid-template-areas:
    'header header'
    'text image'
    'text image'
    'footer footer';
    grid-template-columns: 70%;
    width: 100vw;
}
    

.header{
    grid-area:header;
    border:10px solid black;
    margin:30px;
    padding:30px;
    background-color: white;
}

.text{
    grid-area:text;
    border:10px solid black;
    margin:30px;
    padding:30px;
    align-items:center;
    border-radius: 25px;
}

.image{
    grid-area:image;
    border:10px solid black;
    margin:30px;
    padding:30px;
    width:auto;
}

footer{
    grid-area:footer;
    border:10px solid black;
    margin:30px;
    padding:30px;
    background-color: white;
    width:auto;
}
nav{
    display:flex;
    justify-content:space-around;
    align-items:center;
}
h1{
    text-align:center;
    font-size:xx-large;
    font-family:"Noto Serif Oriya", serif;
}
h3{
    font-family:"Noto Serif Oriya", serif;
    font-size: x-large;
    text-align:right;
    margin-top:auto;
    margin-bottom:auto;
    color:gray;
}

#logo{
    text-align: left;
}

p{
    font-size: large;
    line-height:2.0;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif
}

.picture{
    display:flex;
    flex-direction:column;
    margin-left: auto;
    margin-right:auto;
    width:100%
}

a{
    font-size:x-large;
    font-family:"Noto Serif Oriya", serif;
    text-decoration:none;
    color:gray;
}

