Spaces:
Build error
Build error
File size: 2,278 Bytes
6d750bd | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 | html {
scroll-behavior: smooth;
}
body {
background-color: rgb(36, 41, 46);
margin: 0;
}
a:link {
color: white;
/* Unvisited link */
}
a:visited {
color: white;
/* Visited link */
}
a:hover {
color: white;
/* On mouse hover */
}
a:active {
color: white;
/* Active (clicked) link */
}
div.container1 {
padding: 20px 23px 0px 23px;
}
header.navBar {
display: flex;
justify-content: space-between;
}
a.logo {
font-size: 2.2em;
display: flex;
gap: 8px;
text-decoration: none;
align-items: center;
}
span.greyColor {
color: gray;
}
a span.logoName {
font-family: "Bonheur Royale", serif;
font-weight: 900;
font-size: 2.5rem;
font-style: normal;
color: #ffd000;
}
ul.menu {
display: flex;
gap: 20px;
list-style-type: none;
font-family: "Jaro", sans-serif;
font-optical-sizing: auto;
font-weight: 400;
font-style: normal;
}
.hed{
font-family: "Jaro", sans-serif;
font-optical-sizing: auto;
font-weight: 400;
font-style: normal;
margin: 70px 70px;
text-align: center;
font-size: 3rem;
}
ul.menu li a:hover {
color: #20ff00;
transform: translateY(-3px);
transition: all .3s ease 0s;
}
.decoration {
text-decoration: none;
}
div.container2 h3{
font-family: "Jaro", sans-serif;
font-optical-sizing: auto;
font-weight: 400;
}
div.container2 {
display: flex;
flex-direction: row;
margin: 70px 70px;
justify-content: center;
font-style: normal;
flex-wrap: wrap;
}
div.card {
width: 250px;
margin:5px 5px 5px 5px;
padding: 30px 30px 30px 30px;
border: 1px solid gray;
border-radius: 12px;
box-sizing: border-box;
}
div.card img {
width: 130px;
border-radius: 12px;
margin-left:25px ;
}
.long-text {
overflow-wrap: break-word; /* Wrap long words */
white-space: normal;
}
.containerContactMe7{
display: flex;
/* justify-content:baseline ; */
margin: 60px 60px 60px 250px;
}
.name{
display: flex;
align-items: center;
}
i{
margin: 12px;
font-size: 40px;
}
.AboutMain{
font-family: "Jaro", sans-serif;
font-optical-sizing: auto;
font-weight: 400;
font-style: normal;
} |