@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&display=swap");

:root {
  --white: #fff;
  --black: #1c2b2d;
  --blue: #31326f;
  --light-blue: #005490;
  --color-primary: #9d0191;
  --color-sec: #db6400;
  --grey: #eee;
  --dark-grey: #222831;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 10px;
}

body {
  font-family: "Open Sans", sans-serif;
}

p {
  font-size: 1.6rem;
  line-height: 1.5;
}

img {
  width: 100%;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Start here */

.main {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-1,
.btn-2 {
  font-size: 2rem;
  padding: 1rem;
  border-radius: 5px;
  border: 2px solid var(--color-sec);
  outline: none;
  cursor: pointer;
  margin: 0 5px;
  
}

.confirm {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  padding: 1rem;
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: open .2s forwards;
}

@keyframes open {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.confirm-modal {
  width: 100%;
  max-width: 50rem;
  background-color: var(--white);
  font-size: 1.4rem;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  opacity: 0;
  transform: scale(0.7);
  animation: open-modal 0.2s forwards;
}

@keyframes open-modal {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.close-modal {
  display: none;
}

.header {
  background-color: var(--dark-grey);
  color: var(--white);
  display: flex;
  justify-content: space-between;
  padding: 1rem 1.5rem;
}

.title {
  font-size: 1.6rem;
  font-weight: 700;
}

.close {
  background-color: transparent;
  outline: none;
  border: none;
  font-size: 3rem;
  cursor: pointer;
  color: var(--white);
  transition: all .2s;
}

.close:hover {
  color: red;
}

.content {
  padding: 2rem 1.5rem;
}

.buttons {
  background: var(--grey);
  display: flex;
  justify-content: flex-end;
  padding: 1rem 1.5rem;
}

.btn {
  padding: .8rem 1rem;
  border: 2px solid var(--light-blue);
  border-radius: 5px;
  background: var(--white);
  color: var(--light-blue);
  font-size: 1.5rem;
  font-weight: 700;
  margin-left: 5px;
  cursor: pointer;
  outline: none;
  
}

.btn-ok {
  background: var(--light-blue);
  color: var(--white);
}

.btn:hover {
  transform: scale(1.1);
}