Files
sportstudio/css/main.css
2025-10-19 14:43:55 +00:00

44 lines
757 B
CSS

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');
:root {
--bg-color: #F8F8F8;
--tx-color: #2E2E2E;
}
* {
margin: 0;
padding: 0;
}
a,p,h1,h2,h3 {
color: var(--tx-color);
font-family: "Quicksand";
}
body {
background-color: var(--bg-color);
}
.header_bottom_wrap {
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px 120px;
}
.header_bottom_wrap a {
text-decoration: none;
padding: 0 10px;
}
.block_wrap {
padding: 0 120px;
margin: 0 0 80px 0;
}
.logo {
width: 70%;
}
.header_top_wrap {
display: flex;
justify-content: space-between;
align-items: center;
padding: 5px 120px;
opacity: 50%;
}