:root{
--White: hsl(0, 0%, 100%);
--Slate-300: hsl(212, 45%, 89%);
--Slate-500: hsl(216, 15%, 48%);
--Slate-900: hsl(218, 44%, 22%);
--font-family:"Outfit", sans-serif;
}
/* CSS for index.html */
body {
    font-family: var(--font-family);
    background-color: var(--Slate-300);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    flex-direction: column;
}

.container {
    background-color:var(--White);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    width: 320px;
    padding: 20px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

.logo img {
    width: 100%;
    border-radius: 10px;
}

.text h2 {
    font-family: var(--font-family);
    font-size: 1.5rem;
    margin:10px 0;
    padding: 10px;
    color:var(--Slate-900);
    font-weight: 700;
}

.text p {
    font-family:var(--font-family);
    color:var(--Slate-500) ;
    margin:0 10px;
    padding: 10px;
    font-weight: 400;
}

.copyraite {
    text-align: center;
    margin-top: 20px;
}

.copyraite p {
    font-size: 0.875rem;
    color: var(--Slate-500);
}

.copyraite a {
    color: hsl(228, 45%, 44%);
    text-decoration: none;
}

.copyraite img {
    width: 20px;
    vertical-align: middle;
    margin-left: 5px;
}
/* ^============================================= */
/* ~===========@media (max-width:767px)==========*/
/* ^============================================= */
@media (max-width:767px) {
   .container{
    width: 90%;
    padding: 10px;
    margin: 10px;
   } 
}
