2022-12-11 14:30:42 +00:00
|
|
|
@import url('https://fonts.cdnfonts.com/css/modern-typewriter');
|
|
|
|
|
|
|
|
* {
|
|
|
|
box-sizing: border-box;
|
2022-12-11 14:49:41 +00:00
|
|
|
}
|
2022-12-11 14:30:42 +00:00
|
|
|
|
2022-12-11 14:49:41 +00:00
|
|
|
body {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
font-family: 'MODERN TYPEWRITER', sans-serif;
|
2022-12-11 14:30:42 +00:00
|
|
|
font-size: medium;
|
2022-12-11 14:49:41 +00:00
|
|
|
color: black;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
height: 100%;
|
|
|
|
background-color: rgb(215, 91, 0);
|
2022-12-11 14:30:42 +00:00
|
|
|
}
|
|
|
|
|
2022-12-11 14:49:41 +00:00
|
|
|
h1 {
|
|
|
|
font-size: 50px;
|
|
|
|
font-weight: 900;
|
|
|
|
}
|
|
|
|
|
|
|
|
.container {
|
|
|
|
margin: 5vh 0vh;
|
|
|
|
justify-content: center;
|
|
|
|
width: 90vw;
|
|
|
|
box-shadow: 1px 1px 100px black;
|
|
|
|
border: none;
|
|
|
|
padding: 5vw;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.logo {
|
|
|
|
position: absolute;
|
|
|
|
transform: rotate(-25deg);
|
|
|
|
/*border-radius: 50%;
|
|
|
|
box-shadow: 2px 2px 10px black;*/
|
|
|
|
}
|
|
|
|
|
|
|
|
.logo>img {
|
|
|
|
height: 9vw;
|
|
|
|
}
|
|
|
|
|
|
|
|
.row {
|
2022-12-11 14:30:42 +00:00
|
|
|
display: flex;
|
2022-12-11 14:49:41 +00:00
|
|
|
flex-direction: row;
|
|
|
|
width: 100%;
|
|
|
|
border-bottom: 1px solid black;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: stretch;
|
|
|
|
background-position: absolute;
|
|
|
|
}
|
|
|
|
|
|
|
|
.banner {
|
|
|
|
padding: 3vw;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.col {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
padding: 20px;
|
|
|
|
margin: 50px 0px;
|
|
|
|
width: 100%;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.col-left {
|
|
|
|
border-right: 1px solid black;
|
|
|
|
padding-right: 5vw;
|
|
|
|
}
|
|
|
|
|
|
|
|
.col-right {
|
|
|
|
padding-left: 5vw;
|
2022-12-11 14:30:42 +00:00
|
|
|
}
|