2023-11-17 16:55:32 +04:00

75 lines
1009 B
CSS

body {
margin: 0;
font-family: 'Courier New', Courier, monospace;
font-size: 50px;
color: #000000;
line-height: 1.6;
}
*{
box-sizing:border-box;
}
.container{
width:100%;
max-width: 1920;
margin: 0 auto;
}
h1,h2,h3,h4,h5,h6{
margin:0;
}
.MainPage{
width:100%;
height: 100vh;
}
.header_inner{
display: flex;
justify-content: space-between;
align-items: center;
}
.header{
width: 100%;
padding-top:30px;
position:absolute;
top: 0;
left:0;
right:0;
z-index: 1000;
}
.logo{
display: flex;
}
.header_logo{
display: flex;
margin-left: 0px;
margin-right: 610px;
font-size: 62px;
font-weight: 400;
color:#000000;
}
.header_pict{
padding-top: 20px;
margin-left: 75px;
margin-right: 15px;
}
.nav{
font-size: 35px;
font-weight: 400;
}
.nav_link{
display: inline-block;
color: #0000cf;
margin-left: 30px;
margin-right: 30px;
text-decoration: none;
}