* {
    box-sizing: border-box;
    font-family: kanit;
}
html {
    scroll-behavior: smooth;
  }
h1 {
    font-weight: 600;
}
h2 {
    font-weight: 400;
}
h3 {
    font-weight: 300;
}
h1,h2,h3,h4 {
    color: #773794;
}
p {
    font-weight: 200;
}
body {
    margin: 0;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px;
    background-color: #773794;
}
header img {
    width: 100%;
    max-width: 439px;
}
header button {
    background-color: white;
    font-size: 20px;
    padding: 10px;
    border-radius: 7px;
    border: 0;
    cursor: pointer;
    transition: all .3s ease-out;
}
header button:hover {
    background-color: #f0cfff;
}
.slider {
    width: 100%;
}
.container {
    width: 100%;
    max-width: 1080px;
    margin: auto;
    padding: 15px;
}

section {
    width: 100%;
}

footer {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 18px;
    background-color: #773794;
}
footer img {
    width: 100%;
    max-width: 500px;
}

.social img {
    width: 40px;
    background-color: white;
    border-radius: 8px;
}
.social a {
    transition: all .3s ease-out;
}
.social a :hover {
    transform: scale(1.05);
}
@media (max-width: 600px) {
    header button {
        display: none;
    }
    footer {
        display: block;
    }
    .social {
        width: fit-content;
        margin: auto;
        padding-top: 10px;
    }
}