
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

@font-face {
  font-family: "Roboto";
  src: url("../font/Roboto/Roboto-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../font/Roboto/Roboto-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../font/Roboto/Roboto-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Goldman";
  src: url("../font/Goldman/Goldman-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Goldman";
  src: url("../font/Goldman/Goldman-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  height: 100%; 
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  height: 100%;
  background-color: #000;
  font-size: 1rem;
  font-family: "Roboto";
  font-weight: 300;
  color: #fff;
  padding-top: 100px; 
  display: flex;
  flex-direction: column;
}

.content {
  padding-top: 120px;
  flex: 1 0 auto; 
  width: 100%; 
}

h1, h2, h3{
    font-family: "Goldman";
    font-weight: 700;
    width: 100%;
}

h1{
    font-size: 2.5rem;
    text-align: center;
}

h2{
    font-size: 1.5rem;
    text-align: left;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
    cursor: pointer;
}

ul,
ol {
    list-style: none;
    padding: 0;
}
