:root {
    --main-color: #19c8fa;
    --transparent-color: rgb(15 116 143 / 70%);
}
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    background-color: var(--transparent-color);
}
ul {
    list-style: none;
}
.container {
    padding-right: 15px;
    padding-left: 15px;
    margin-left: auto;
    margin-right: auto;
}
@media (min-width: 768px) {
    .container {
        width: 750px;
    }
}
@media (min-width: 992px) {
    .container {
        width: 970px;
    }
}
@media (min-width: 1200px) {
    .container {
        width: 1170px;
    }
}
header img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 40px auto 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
header h1 {
    font-family: "Sirivennela", sans-serif;
    display: flex;
    margin: 20px auto 10px;
    justify-content: center;
    align-items: center;
}
header .store {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px auto 30px;
    font-size: 20px;
    line-height: 2;
}
@media (max-width: 767px) {
    body {
        background-color: rgb(78, 78, 201);
    }
    .sakr ul li:hover {
        border-radius: 10px;
    }
}
.sakr {
    margin: 30px auto 186px;
}
.sakr ul li {
    text-align: center;
    background-color: #19c8fa5c;
    margin: 15px;
    box-shadow: 0px 0px 40px -10px black;
    border-radius: 10px;
    font-family: "Sirivennela", sans-serif;
    font-size: 22px;
    cursor: pointer;
    font-weight: bold;
    position: relative;
    transition: 0.3s;
}
.sakr ul .fa-brands {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.sakr ul li a {
    text-decoration: none;
    display: block;
    padding: 20px; 
}
.sakr ul li:first-child a,
.sakr ul li:first-child {
    color: blue;
}
.sakr ul li:nth-child(2) a,
.sakr ul li:nth-child(2) {
    color: #25D366;
}
.sakr ul li:nth-child(3) a,
.sakr ul li:nth-child(3) {
    color: black;
}
.sakr ul li:first-child:hover {
    background-color: rgb(96 0 255 / 31%);
}
.sakr ul li:nth-child(2):hover {
    background-color: #25d36556;
}
.sakr ul li:nth-child(3):hover {
    background-color: rgba(0, 0, 0, 0.226);
}
footer {
    background-color: #0080007a;
    padding: 30px 10px;
    font-size: 18px;
    text-align: center;
}
footer span {
    font-weight: bold;
    color: var(--main-color);
}
