File size: 2,319 Bytes
f5071ca
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:wght@800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");

.poster-area {
  background: rgb(233, 147, 23);
  background: radial-gradient(
    circle,
    rgba(233, 147, 23, 1) 0%,
    rgba(233, 125, 23, 1) 87%
  );
  position: relative;
  border-radius: 20px;
  margin-left: 220px;
  margin-right: 220px;
  top: 40px;
  padding: 10px;
  padding-bottom: 40px;
  padding-left: 40px;
  text-align: left;
}

.poster-head {
  font-size: 39px;
  font-family: "Noto Sans", sans-serif;
  color: white;
}

.poster-desc {
  font-size: 17px;
  font-family: "Poppins", sans-serif;
  width: 28%;
  color: white;
}

.poster-data {
  position: relative;
  bottom: 18px;
  animation: animate1 0.4s ease;
}

@keyframes animate1 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.browse-btn {
  cursor: pointer;
  background-color: white;
  border-radius: 40px;
  color: rgb(233, 147, 23);
  border: none;
  box-shadow: rgba(50, 50, 93, 0.13) 0px 13px 27px -5px,
    rgba(0, 0, 0, 0.088) 0px 8px 16px -8px;
  font-family: sans-serif;
  font-weight: 600;
  font-size: 17px;
  padding: 15px;
  animation: animate1 0.4s ease;
  transition: all 0.16s ease;
}

.browse-btn:hover {
  transform: scale(1.04);
}

.browse-btn:active {
  transform: scale(1);
}

.delivery {
  position: absolute;
  width: 400px;
  right: 250px;
  top: 95px;
  animation: float 0.6s ease-out;
}

@keyframes float {
  0% {
    top: 120px;
    opacity: 0;
  }

  100% {
    top: 95px;
    opacity: 1;
  }
}

@media (max-width: 1200px) {
  .delivery {
    top: 121px;
  }
}

@media (max-width: 1100px) {
  .delivery {
    display: none;
  }

  .poster-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: 40px;
    margin-right: 40px;
  }
  .poster-head {
    text-align: center;
  }
  .poster-desc {
    width: fit-content;
    text-align: center;
  }
}

@media (max-width: 420px) {
  .poster-head {
    font-size: 28px;
  }
  .poster-desc {
    font-size: 14px;
  }
  .poster-desc > b {
    font-size: 17px;
  }
  .browse-btn {
    font-size: 15px;
  }
}

@media (max-width: 300px) {
  .poster-area {
    margin-left: 17px;
    margin-right: 17px;
  }
}