@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+Tamil:wght@100..900&display=swap");

* {
  box-sizing: border-box;
  /* outline:red 1px solid; */
}
/* 
Colours: 
fce7c3 beige
c8102e Red
*/
body {
  max-width: 100%;
  background-color: #fce7c3;
  font-family: "Noto Sans Tamil", sans-serif;
}
img {
  width: 100px;
  display: block;
  margin: 0 auto;
  padding: 5px 4px 10px 10px;
}
.logo_img {
  border: 1px black solid;
  width: fit-content;
  margin: 0 auto;
  border-radius: 100%;
  margin-bottom: 50px;
  margin-top: 50px;
}
h1 {
  text-align: center;
  color: black;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0;
}
p {
  text-align: center;
  color: black;
  font-size: 0.75rem;
  margin-bottom: 30px;
}
.buttons {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.website {
  background-image: url(web-round-svgrepo-com.svg);
  background-repeat: no-repeat;
  background-position: 10px;
  background-size: 35px;
}
.ig {
  background-image: url(Instagram_Glyph_Gradient.svg);
  background-repeat: no-repeat;
  background-position: 10px;
  background-size: 25px;
}
a {
  text-decoration: none;
  text-align: center;
  background-color: white;
  color: #c8102e;
  width: 400px;
  border: 0.5px black solid;
  padding: 15px 2.5px 12px 2.5px;
  border: 1px black solid;
  border-radius: 40px;
  box-shadow: 5px 8px 10px rgba(0, 0, 0, 0.6);
  transition: 0.3s ease-in-out;
}
a:hover {
  transform: scale(1.1);
  transition: 0.2s ease-in;
  cursor: pointer;
}

@media only screen and (max-width: 430px) {
  a {
    width: 350px;
  }
}
