@font-face {
  font-family: 'Bold';
  src: url('./fonts/bold.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Regular';
  src: url('./fonts/regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Crumbl';
  src: url('./fonts/crumbl.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

html {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

#header {
    background-color: #ffb9cd;
    padding: 10px;
    text-align: center;
}

#title {
    padding: 10px;
}

#tag {
    background-color: rgb(254, 185, 205);
    font-weight: normal;
    font-size: 21px;
    padding-top: 6px;
    padding-bottom: 6px;
    padding-left: 25px;
    padding-right: 25px;
    border-radius: 6px;
    display: inline-block;
}

#title {
    font-family: 'Bold', sans-serif;
}

#main {
    font-family: 'Regular', sans-serif;
    font-size: 18px;
}

#cake {
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 8px;
    padding-right: 8px;
    background-color: none;
    border-radius: 40px;
    transition: all 0.4s ease;
}

#cake:hover {
    background-color: #ffa472;
}

#btn {
    font-family: 'Crumbl', sans-serif;
    transition: all 0.4s ease;
    background: none;
    border: none;
    box-shadow: none;
}

#btn:focus {
  outline: none;
}

#cake:hover #btn {
    padding: 12px 32px;
    background-color: black;
    color: #ffa472;
    border-radius: 999px;
}

#yes, #no {
    background: none;
    border: none;
    box-shadow: none;
    padding: 12px 32px;
    width: 200px;
    background-color: black;
    border-radius: 999px;
    color: white;
}

#yes {
    margin-right: 15px;
    transition: all 0.25s ease;
}

#no {
    transition: left 0.25s ease, top 0.25s ease;
    margin-left: 15px;
    position: relative;
}
